From 48b5faba57205b29f9db69aa5f14db973f591eed Mon Sep 17 00:00:00 2001 From: Thomas Kluyver Date: Mon, 12 Feb 2018 10:39:14 +0000 Subject: [PATCH] Don't install gettext into builtins --- notebook/transutils.py | 1 - 1 file changed, 1 deletion(-) diff --git a/notebook/transutils.py b/notebook/transutils.py index 1bde12e83..eed860aa3 100644 --- a/notebook/transutils.py +++ b/notebook/transutils.py @@ -10,5 +10,4 @@ import gettext # Set up message catalog access base_dir = os.path.realpath(os.path.join(__file__, '..', '..')) trans = gettext.translation('notebook', localedir=os.path.join(base_dir, 'notebook/i18n'), fallback=True) -trans.install() _ = trans.gettext