Skip to content

Commit

Permalink
v0.13.3: restore Python 3.5 compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
mDuo13 committed Jan 22, 2021
1 parent 158e914 commit 5b413f1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dactyl/page.py
Original file line number Diff line number Diff line change
Expand Up @@ -551,7 +551,7 @@ def filter_exports(self):
if "export" in dir(self.config.filters[filter_name]):
for key,val in self.config.filters[filter_name].export.items():
if key in exported_vals.keys():
logger.warning(f"Export '{key}' from filter {filter_name} overwrites previous value. Another filter exported the same key?")
logger.warning("Export '{key}' from filter {filter_name} overwrites previous value. Another filter exported the same key?".format(key=key, filter_name=filter_name))
exported_vals[key] = val
return exported_vals

Expand Down
2 changes: 1 addition & 1 deletion dactyl/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.13.2'
__version__ = '0.13.3'

0 comments on commit 5b413f1

Please sign in to comment.