From 9ceaa4b235c920ccde34b30c55d879ce936e8af4 Mon Sep 17 00:00:00 2001 From: Emmanuel Garette Date: Thu, 2 May 2013 11:23:47 +0200 Subject: [PATCH] tiramisu/i18n.py: pep8 compliants --- tiramisu/i18n.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tiramisu/i18n.py b/tiramisu/i18n.py index a79654c..205659a 100644 --- a/tiramisu/i18n.py +++ b/tiramisu/i18n.py @@ -10,7 +10,7 @@ import locale APP_NAME = 'tiramisu' # Traduction dir -APP_DIR = os.path.join (sys.prefix, 'share') +APP_DIR = os.path.join(sys.prefix, 'share') LOCALE_DIR = os.path.join(APP_DIR, 'locale') # Default Lanugage @@ -31,4 +31,3 @@ gettext.bind_textdomain_codeset(APP_NAME, "UTF-8") gettext.translation(APP_NAME, fallback=True) _ = gettext.gettext -