Skip to content

Commit

Permalink
fixed some bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
w-sx committed May 15, 2024
1 parent f1110c6 commit 90cd023
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build_addon.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
push:
tags: ["*"]
# To build on main/master branch, uncomment the following line:
branches: [ main , master ]
# branches: [ main , master ]

pull_request:
branches: [ main, master ]
Expand All @@ -24,7 +24,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.9
python-version: 3.10
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 90cd023

Please sign in to comment.