Browse Source

python3 support

Sakis Kasampalis 13 years ago
parent
commit
af69c0f563
1 changed files with 1 additions and 1 deletions
  1. 1 1
      factory_method.py

+ 1 - 1
factory_method.py

@@ -27,4 +27,4 @@ def get_localizer(language="English"):
 e, j = get_localizer("English"), get_localizer("Greek")  
 # Localize some text 
 for msgid in "dog parrot cat bear".split():     
-    print e.get(msgid), j.get(msgid)
+    print(e.get(msgid), j.get(msgid))