summaryrefslogtreecommitdiffstats
path: root/text.py
diff options
context:
space:
mode:
authorPeter Jones <pjones@redhat.com>2008-09-08 10:50:44 -0400
committerPeter Jones <pjones@vroomfondel.internal.datastacks.com>2008-09-08 11:21:02 -0400
commitce62c1c27adcf413e80f63faed8ea8f48bf357de (patch)
treef5c5354a434fc914297c2c61f643442215d2afb6 /text.py
parentb9a00e190355e1dce0bc905dc24e3007f8f6b7b1 (diff)
downloadanaconda-ce62c1c27adcf413e80f63faed8ea8f48bf357de.tar.gz
anaconda-ce62c1c27adcf413e80f63faed8ea8f48bf357de.tar.xz
anaconda-ce62c1c27adcf413e80f63faed8ea8f48bf357de.zip
Use print() as a function.
Diffstat (limited to 'text.py')
-rw-r--r--text.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/text.py b/text.py
index e98e849d3..c35398ac5 100644
--- a/text.py
+++ b/text.py
@@ -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()