From: Alex Morega Date: Sat, 6 Jul 2013 15:18:48 +0000 (+0200) Subject: fix doctests, the return value is unicode X-Git-Tag: 1.0~87^2 X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=refs%2Fpull%2F20%2Fhead;p=thirdparty%2Fbabel.git fix doctests, the return value is unicode --- diff --git a/babel/core.py b/babel/core.py index 87e49217..5b02a1b7 100644 --- a/babel/core.py +++ b/babel/core.py @@ -31,9 +31,9 @@ def get_global(key): information independent of individual locales. >>> get_global('zone_aliases')['UTC'] - 'Etc/GMT' + u'Etc/GMT' >>> get_global('zone_territories')['Europe/Berlin'] - 'DE' + u'DE' :param key: the data key :return: the dictionary found in the global data under the given key