diff options
author | bfox <bfox> | 2001-07-27 18:39:29 +0000 |
---|---|---|
committer | bfox <bfox> | 2001-07-27 18:39:29 +0000 |
commit | 08f3ff6f2ecd75be92ff1df1a17663d02178fb66 (patch) | |
tree | 2f476f13242cd9deb2f9217cae1229daade758a3 /iw/welcome_gui.py | |
parent | 0b8c23922fa4469127c10604cb6324f57b05c815 (diff) | |
download | anaconda-08f3ff6f2ecd75be92ff1df1a17663d02178fb66.tar.gz anaconda-08f3ff6f2ecd75be92ff1df1a17663d02178fb66.tar.xz anaconda-08f3ff6f2ecd75be92ff1df1a17663d02178fb66.zip |
remove one print statement and fix spelling on another print
Diffstat (limited to 'iw/welcome_gui.py')
-rw-r--r-- | iw/welcome_gui.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/iw/welcome_gui.py b/iw/welcome_gui.py index 4d708ea41..b2f631f44 100644 --- a/iw/welcome_gui.py +++ b/iw/welcome_gui.py @@ -18,7 +18,6 @@ class WelcomeWindow (InstallWindow): frame.set_shadow_type (SHADOW_IN) image = configFileData["WelcomeScreen"] - print "try to load", image pix = self.ics.readPixmap(image) if pix: @@ -47,7 +46,7 @@ class ReconfigWelcomeWindow (InstallWindow): if self.cancelChoice.get_active(): import sys - print "Exitting" + print (_("Exiting anaconda now")) sys.exit(0) else: self.beingDisplay = 0 |