[PATCH 3/4] Translate the hints on how to quit debugger and shell

Vratislav Podzimek vpodzime at redhat.com
Tue Oct 8 12:31:23 UTC 2013


Signed-off-by: Vratislav Podzimek <vpodzime at redhat.com>
---
 meh/handler.py | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/meh/handler.py b/meh/handler.py
index 622f7fa..28b2183 100644
--- a/meh/handler.py
+++ b/meh/handler.py
@@ -192,8 +192,8 @@ class ExceptionHandler(object):
         """
 
         print
-        print "Use 'continue' command to quit the debugger and get back to "\
-              "the main menu"
+        print _("Use 'continue' command to quit the debugger and get back to "
+                "the main menu")
         import pdb
         pdb.post_mortem(exc_info.stack)
         #no need to quit here, let's just get back to the main dialog
@@ -208,7 +208,7 @@ class ExceptionHandler(object):
         """
 
         print
-        print "Exit the shell to get back to the main menu"
+        print _("Exit the shell to get back to the main menu")
         proc = subprocess.Popen(["bash", "--login"], shell=True, cwd="/")
         proc.wait()
 
-- 
1.7.11.7



More information about the anaconda-patches mailing list