summaryrefslogtreecommitdiffstats
path: root/rescue.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2003-02-10 06:32:22 +0000
committerJeremy Katz <katzj@redhat.com>2003-02-10 06:32:22 +0000
commit77c6f67883b6bb99d7624c2dad64760eb0a1567e (patch)
tree38966e66ee1c07b659aa323e03902190477dbb5b /rescue.py
parentcf9736b0d133f5c7114c0585ac44a30dcce9b6cf (diff)
downloadanaconda-77c6f67883b6bb99d7624c2dad64760eb0a1567e.tar.gz
anaconda-77c6f67883b6bb99d7624c2dad64760eb0a1567e.tar.xz
anaconda-77c6f67883b6bb99d7624c2dad64760eb0a1567e.zip
translate and then substitute, not vice versa (#83799)
Diffstat (limited to 'rescue.py')
-rw-r--r--rescue.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/rescue.py b/rescue.py
index 1b3c78a45..e26651dcb 100644
--- a/rescue.py
+++ b/rescue.py
@@ -185,7 +185,7 @@ def runRescue(instPath, mountroot, id):
"\n\n"
"If for some reason this process fails you can choose 'Skip' "
"and this step will be skipped and you will go directly to a "
- "command shell.\n\n" % (instPath,)),
+ "command shell.\n\n") % (instPath,),
[_("Continue"), _("Read-Only"), _("Skip")] )
if rc == string.lower(_("Skip")):
@@ -327,7 +327,7 @@ def runRescue(instPath, mountroot, id):
_("An error occurred trying to mount some or all of your "
"system. Some of it may be mounted under %s.\n\n"
"Press <return> to get a shell. The system will reboot "
- "automatically when you exit from the shell." % (instPath,)),
+ "automatically when you exit from the shell.") % (instPath,),
[_("OK")] )
else:
ButtonChoiceWindow(screen, _("Rescue Mode"),
@@ -341,7 +341,7 @@ def runRescue(instPath, mountroot, id):
print
if rootmounted and not readOnly:
makeMtab(instPath, fs)
- print _("Your system is mounted under the %s directory." % (instPath,))
+ print _("Your system is mounted under the %s directory.") % (instPath,)
print
print _("When finished please exit from the shell and your "