diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2010-03-30 18:19:00 +0200 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2010-03-30 18:19:00 +0200 |
commit | dfadefc5e19fb2e275d600e3ffc7257cb494cc18 (patch) | |
tree | 153f6c9777b31b0583fcf77a5e665935644eb5e8 /module/setup.py | |
parent | little fix (diff) | |
download | pyload-dfadefc5e19fb2e275d600e3ffc7257cb494cc18.tar.xz |
%s fix
Diffstat (limited to 'module/setup.py')
-rw-r--r-- | module/setup.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/setup.py b/module/setup.py index aa7b9a117..79bb51e22 100644 --- a/module/setup.py +++ b/module/setup.py @@ -286,9 +286,9 @@ class Setup(): def print_dep(self, name, value): """Print Status of dependency""" if value: - print _("%s: OK" % name) + print _("%s: OK") % name else: - print _("%s: missing" % name) + print _("%s: missing") % name def check_module(self, module): |