diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2010-08-27 14:23:55 +0200 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2010-08-27 14:23:55 +0200 |
commit | 1bbbd7e7e123516a8540099e5f380ba158dfef5f (patch) | |
tree | 87725c8189bf68b5832e4de44555858173051743 /module/plugins/Crypter.py | |
parent | hotfile fix (diff) | |
download | pyload-1bbbd7e7e123516a8540099e5f380ba158dfef5f.tar.xz |
locale fixes
Diffstat (limited to 'module/plugins/Crypter.py')
-rw-r--r-- | module/plugins/Crypter.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/plugins/Crypter.py b/module/plugins/Crypter.py index c72babb15..1b6647f6b 100644 --- a/module/plugins/Crypter.py +++ b/module/plugins/Crypter.py @@ -52,7 +52,7 @@ class Crypter(Plugin): """ create new packages from self.packages """ for pack in self.packages: - self.log.info(_("Parsed package %s with %s links") % (pack[0], len(pack[1]) ) ) + self.log.info(_("Parsed package %(name)s with %(len)d links") % { "name" : pack[0], "len" : len(pack[1]) } ) self.core.server_methods.add_package(pack[0], pack[1], 1) |