diff options
author | Matt Wilson <msw@redhat.com> | 2001-06-22 23:56:28 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 2001-06-22 23:56:28 +0000 |
commit | 0c9e60e741e93b599af8a7c976112dc587ad23de (patch) | |
tree | 201a62193d1e3c9cb0d9242cc20a8fcd3ee0fdf0 /xserver.py | |
parent | 34f2f5fd284cf8e70680934bc07d7539600ed312 (diff) | |
download | anaconda-0c9e60e741e93b599af8a7c976112dc587ad23de.tar.gz anaconda-0c9e60e741e93b599af8a7c976112dc587ad23de.tar.xz anaconda-0c9e60e741e93b599af8a7c976112dc587ad23de.zip |
various pychecker fixups
Diffstat (limited to 'xserver.py')
-rw-r--r-- | xserver.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/xserver.py b/xserver.py index 708539618..fc93cd1f4 100644 --- a/xserver.py +++ b/xserver.py @@ -23,7 +23,6 @@ import time from xf86config import * from kbd import Keyboard from mouse import Mouse -import time from snack import * from translate import _ from constants_text import * @@ -154,11 +153,10 @@ def testx(x): server = x.test ([':1', 'vt7', '-s', '1440', '-terminate'], spawn=1) except: import traceback - from string import joinfields server = None (type, value, tb) = sys.exc_info() list = traceback.format_exception (type, value, tb) - text = joinfields (list, "") + text = string.joinfields (list, "") print text # give time for the server to fail (if it is going to fail...) |