From a4e3d0c514016f2be2c5dd293630452c43ec5bc3 Mon Sep 17 00:00:00 2001 From: steffen123 Date: Sun, 22 Aug 2010 05:02:22 +0200 Subject: [PATCH] a missing gettextification from a recent patch --- pyfpdb/Configuration.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyfpdb/Configuration.py b/pyfpdb/Configuration.py index 2d3f864f..b5afcf5a 100755 --- a/pyfpdb/Configuration.py +++ b/pyfpdb/Configuration.py @@ -110,7 +110,7 @@ def get_config(file_name, fallback = True): example_path = '/usr/share/python-fpdb/' + file_name + '.example' try: shutil.copyfile(example_path, config_path) - msg = 'Configuration file created: %s\n' % config_path + msg = _("Config file has been created at %s.\n") % config_path logging.info(msg) return (config_path,False) except IOError: