Fix Babel version restriction. Onward and upward!
authorChristopher Allan Webber <cwebber@dustycloud.org>
Sat, 22 Mar 2014 16:00:10 +0000 (11:00 -0500)
committerChristopher Allan Webber <cwebber@dustycloud.org>
Sat, 22 Mar 2014 16:02:24 +0000 (11:02 -0500)
(Fix suggested by simonft... thanks!)

mediagoblin/tools/translate.py
setup.py

index f55ce3493d69587b5e773f6cdf0ec3c8c66cdee3..257bd791be3350c4fa4f28789f7e304f5ade2abc 100644 (file)
@@ -42,7 +42,7 @@ def set_available_locales():
     """Set available locales for which we have translations"""
     global AVAILABLE_LOCALES
     locales=['en', 'en_US'] # these are available without translations
-    for locale in localedata.list():
+    for locale in localedata.locale_identifiers():
         if gettext.find('mediagoblin', TRANSLATIONS_PATH, [locale]):
             locales.append(locale)
     AVAILABLE_LOCALES = locales
index 6310a1bc980ce42fb390eee375fc0ed25155fffb..d3f9168634f035e1adca04e891fd4a1d6a4c4892 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -53,7 +53,7 @@ try:
         'kombu',
         'jinja2',
         'sphinx',
-        'Babel<1.0',
+        'Babel',
         'argparse',
         'webtest<2',
         'ConfigObj',