VMM: Post-2to3 fix. v0.7.x
authorPascal Volk <user@localhost.localdomain.org>
Sun, 25 Nov 2012 14:37:09 +0000
branchv0.7.x
changeset 652 68d715ce6e1c
parent 651 6937cb38db71
child 653 cf07e4468934
VMM: Post-2to3 fix. Don't pass 'str=1' ('unicode=1' before 2to3) to gettext.install().
VirtualMailManager/__init__.py
--- a/VirtualMailManager/__init__.py	Sat Nov 24 22:48:12 2012 +0000
+++ b/VirtualMailManager/__init__.py	Sun Nov 25 14:37:09 2012 +0000
@@ -32,4 +32,4 @@
     locale.setlocale(locale.LC_ALL, 'C')
 ENCODING = locale.nl_langinfo(locale.CODESET)
 
-gettext.install('vmm', '/usr/local/share/locale', str=1)
+gettext.install('vmm', '/usr/local/share/locale')