Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2017-03-31 01:45:25 +0300
committerCampbell Barton <ideasman42@gmail.com>2017-03-31 01:48:57 +0300
commit8bd61ea54d9746fb541a621e30a3d72d4be5172a (patch)
tree7b3c62be8f452b95a3a467c05d0aec596f49bda7
parent14c208346021c39b05acb0b11a9e312e2cea00d0 (diff)
Correct string formatting (error in recent change)
-rw-r--r--release/scripts/startup/bl_operators/wm.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/startup/bl_operators/wm.py b/release/scripts/startup/bl_operators/wm.py
index 17ec778a275..d94951341c1 100644
--- a/release/scripts/startup/bl_operators/wm.py
+++ b/release/scripts/startup/bl_operators/wm.py
@@ -2092,7 +2092,7 @@ class WM_OT_addon_install(Operator):
# print message
msg = (
- tip_("Modules Installed (%s) from %r into %r (%s)") %
+ tip_("Modules Installed (%s) from %r into %r") %
(", ".join(sorted(addons_new)), pyfile, path_addons)
)
print(msg)