Cleanup: remove f-string use in favor of percentage for formatting

This commit is contained in:
2020-07-16 23:50:33 +10:00
parent 618f31312c
commit 83e204702d
7 changed files with 15 additions and 15 deletions

View File

@@ -367,7 +367,7 @@ def enable(module_name, *, default_set=False, persistent=False, handle_error=Non
if mod.bl_info.get("blender", (0, 0, 0)) < (2, 80, 0):
if _bpy.app.debug:
print(f"Warning: Add-on '{module_name:s}' was not upgraded for 2.80, ignoring")
print("Warning: Add-on '%s' was not upgraded for 2.80, ignoring" % module_name)
return None
# 2) Try register collected modules.