Skip to content

Commit

Permalink
Merge pull request #40 from w-sx/master
Browse files Browse the repository at this point in the history
fixed Workflow failed to build, issue #39
  • Loading branch information
josephsl committed May 16, 2024
2 parents b82cbfc + 49c3a07 commit 0cb5234
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_addon.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion sconstruct
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 0cb5234

Please sign in to comment.