summaryrefslogtreecommitdiffstats
path: root/anaconda
diff options
context:
space:
mode:
authorbfox <bfox>2000-11-29 20:29:56 +0000
committerbfox <bfox>2000-11-29 20:29:56 +0000
commit3892702480f1253a2d733ae1fde724b5a70e2a90 (patch)
tree51faa8d1a11eb1473abcff27916595738ea105af /anaconda
parent20541b5401d02fa0b52706a577b82adc53874cea (diff)
downloadanaconda-3892702480f1253a2d733ae1fde724b5a70e2a90.tar.gz
anaconda-3892702480f1253a2d733ae1fde724b5a70e2a90.tar.xz
anaconda-3892702480f1253a2d733ae1fde724b5a70e2a90.zip
Removed unneeded print statement
Diffstat (limited to 'anaconda')
-rwxr-xr-xanaconda6
1 files changed, 4 insertions, 2 deletions
diff --git a/anaconda b/anaconda
index c1ff2fb68..a384b536f 100755
--- a/anaconda
+++ b/anaconda
@@ -276,7 +276,7 @@ if (display_mode == 'g' and not os.environ.has_key('DISPLAY')):
import xserver
try:
if (reconfigOnly == 0):
- result = xserver.startX ()
+ result = xserver.startX (runres)
else:
result = xserver.start_existing_X ()
@@ -303,6 +303,7 @@ if (display_mode == 'g'):
from gui import InstallInterface
except:
print "GUI installer startup failed, falling back to text mode."
+ display_mode = 't'
from text import InstallInterface
elif (display_mode == 't'):
from text import InstallInterface
@@ -372,10 +373,11 @@ if xmode:
pass
sys.exit (0)
+#print runres
if display_mode == "t":
intf = InstallInterface ()
else:
- intf = InstallInterface(runres = runres)
+ intf = InstallInterface (runres = runres)
# imports after setting up the path
if not reconfigOnly: