diff --git a/.github/workflows/committee_creation.yml b/.github/workflows/committee_creation.yml
index 1bd6c072e40b7e2abed99200df2692734cb1f6ff..6acbc6cf9a853724f84b4787983654100c0f2303 100644
--- a/.github/workflows/committee_creation.yml
+++ b/.github/workflows/committee_creation.yml
@@ -23,7 +23,7 @@ jobs:
         run: |
           branch_name=${{ github.ref }}
           branch_name=${branch_name#refs/heads/committee/}
-          sed "s/class Example/class $branch_name/g" src/Committees/example.py > "src/Committees/${branch_name}.py"
+          sed "s/class Example/class ${branch_name^}/g" src/Committees/example.py > "src/Committees/${branch_name}.py"
         shell: bash
 
       - name: Commit and Push Changes