diff --git a/.github/workflows/build_addon.yml b/.github/workflows/build_addon.yml index 9b97cd9..2ef9652 100644 --- a/.github/workflows/build_addon.yml +++ b/.github/workflows/build_addon.yml @@ -24,7 +24,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v4 with: - python-version: 3.9 + python-version: 3.11 cache: 'pip' - name: Install dependencies diff --git a/sconstruct b/sconstruct index 36804f1..38a4e62 100644 --- a/sconstruct +++ b/sconstruct @@ -210,7 +210,7 @@ def generateTranslatedManifest(source, language, out): for table in buildVars.brailleTables.keys(): result_brailleTables.append(f"[[{table}]]") # Fetch display name only. - result_brailleTables.append(f"displayName = {buildVars.brailleTables[table]["displayName"]}") + result_brailleTables.append(f"displayName = {buildVars.brailleTables[table]['displayName']}") result += "\n".join(result_brailleTables) + "\n" with codecs.open(out, "w", "utf-8") as f: f.write(result)