diff options
author | bfox <bfox> | 2001-02-09 08:11:38 +0000 |
---|---|---|
committer | bfox <bfox> | 2001-02-09 08:11:38 +0000 |
commit | 918502b9ec228f6c24ad691aca6115ae05976e4f (patch) | |
tree | 4f588d112ff866ed834f3699f75c0f5e87ccd38a /xserver.py | |
parent | 48f3f40401d809e6a92b7a504b8aa0ffe603e1b6 (diff) | |
download | anaconda-918502b9ec228f6c24ad691aca6115ae05976e4f.tar.gz anaconda-918502b9ec228f6c24ad691aca6115ae05976e4f.tar.xz anaconda-918502b9ec228f6c24ad691aca6115ae05976e4f.zip |
removed unneeded print statement that caused user to file bug #25741
Diffstat (limited to 'xserver.py')
-rw-r--r-- | xserver.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/xserver.py b/xserver.py index d1966eba9..1f694b599 100644 --- a/xserver.py +++ b/xserver.py @@ -95,12 +95,11 @@ def startX(resolution, nofbmode): #--Run fb_check() and see if framebuffer works on this card if fb_check() == 0: -# print "fb_check returned with value", fb_check() x.server = "XF86_FBDev" if x.server: serverPath = '/usr/X11R6/bin/' + x.server - print "Using X server", serverPath +# print "Using X server", serverPath elif iutil.getArch() == "sparc": raise RuntimeError, "Unknown card" |