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 /videocard.py | |
parent | 34f2f5fd284cf8e70680934bc07d7539600ed312 (diff) | |
download | anaconda-0c9e60e741e93b599af8a7c976112dc587ad23de.tar.gz anaconda-0c9e60e741e93b599af8a7c976112dc587ad23de.tar.xz anaconda-0c9e60e741e93b599af8a7c976112dc587ad23de.zip |
various pychecker fixups
Diffstat (limited to 'videocard.py')
-rw-r--r-- | videocard.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/videocard.py b/videocard.py index 2aca94f84..0ca6c6106 100644 --- a/videocard.py +++ b/videocard.py @@ -35,7 +35,7 @@ def Video_cardsDBLookup(thecard): count = count + 1 if count >= 16: - raise RunTimeError, "Could not find card ",origcard + raise RuntimeError, "Could not find card %s" % (origcard,) return card |