From 3bec0ee5aa450fb7b56bd9df46ca38c8070bc5bd Mon Sep 17 00:00:00 2001 From: Doug Blank Date: Thu, 29 Aug 2013 01:19:58 +0000 Subject: [PATCH] languages was set to a list; should be a :-separated string svn: r22928 --- gramps/webapp/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gramps/webapp/utils.py b/gramps/webapp/utils.py index 0d71c624e..5e16243ef 100644 --- a/gramps/webapp/utils.py +++ b/gramps/webapp/utils.py @@ -75,7 +75,7 @@ from gramps.gen.utils.grampslocale import GrampsLocale #FIXME: A locale should be obtained from the user and used to #initialize the locale. Passing in lang and language parameters to the #constructor prevents querying the environment. -glocale = GrampsLocale(lang='en_US.UTF-8', languages=['en']) +glocale = GrampsLocale(lang='en_US.UTF-8', languages='en') _ = glocale.translation.gettext TAB_HEIGHT = 200