From 8e4a14530000cd0945d0cc9cc8120c26e4efc978 Mon Sep 17 00:00:00 2001 From: Alex Morega Date: Sat, 6 Jul 2013 17:18:48 +0200 Subject: [PATCH] fix doctests, the return value is unicode --- babel/core.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 2.47.2