diff options
author | Peter Jones <pjones@redhat.com> | 2008-09-08 10:50:44 -0400 |
---|---|---|
committer | Peter Jones <pjones@vroomfondel.internal.datastacks.com> | 2008-09-08 11:21:02 -0400 |
commit | ce62c1c27adcf413e80f63faed8ea8f48bf357de (patch) | |
tree | f5c5354a434fc914297c2c61f643442215d2afb6 /text.py | |
parent | b9a00e190355e1dce0bc905dc24e3007f8f6b7b1 (diff) | |
download | anaconda-ce62c1c27adcf413e80f63faed8ea8f48bf357de.tar.gz anaconda-ce62c1c27adcf413e80f63faed8ea8f48bf357de.tar.xz anaconda-ce62c1c27adcf413e80f63faed8ea8f48bf357de.zip |
Use print() as a function.
Diffstat (limited to 'text.py')
-rw-r--r-- | text.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -767,10 +767,10 @@ def debugSelf(screen): def spawnShell(screen): screen.suspend() - print "\n\nType <exit> to return to the install program.\n" + print("\n\nType <exit> to return to the install program.\n") if os.path.exists("/bin/sh"): iutil.execConsole() else: - print "Unable to find /bin/sh to execute! Not starting shell" + print("Unable to find /bin/sh to execute! Not starting shell") time.sleep(5) screen.resume() |