Skip to content

Commit

Permalink
Update settings.py
Browse files Browse the repository at this point in the history
Fix for #8. Needs Testing before committing.
  • Loading branch information
adhesivecheese authored Mar 3, 2023
1 parent f4b2ee1 commit deb4cd6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pmtw/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ def load(self):
# append expected items to the json, in case the toolbox settings
# don't have them, since things get added here without a bump to ver
for item in ["domainTags", "removalReasons", "modMacros","banMacros"]:
if item not in page.keys(): page[item] = ""
if item not in page.keys(): page[item] = []

# Copy things over so we don't have to hit ToolboxSettings.settings
# for every variable
Expand Down

0 comments on commit deb4cd6

Please sign in to comment.