From ee5e80894c507c351baca8c089c2c901fe095211 Mon Sep 17 00:00:00 2001 From: Worros Date: Wed, 22 Sep 2010 16:40:31 +0800 Subject: [PATCH] Locale: Fix bug with last patch --- pyfpdb/GuiBulkImport.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyfpdb/GuiBulkImport.py b/pyfpdb/GuiBulkImport.py index 9c23e463..550e70f3 100755 --- a/pyfpdb/GuiBulkImport.py +++ b/pyfpdb/GuiBulkImport.py @@ -35,7 +35,7 @@ import Exceptions import locale (lang, charset) = locale.getdefaultlocale() -if lang = None or lang == "en": +if lang == None or lang == "en": def _(string): return string else: import gettext