diff options
author | Raymond Hettinger <python@rcn.com> | 2003-06-12 04:05:00 +0000 |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2003-06-12 04:05:00 +0000 |
commit | f31cb0cbcfa509628d2e15ee3eb891dfbaa5561e (patch) | |
tree | 5dc268ffb78f127a0c3d63951c6e4c5114a78367 /Lib/csv.py | |
parent | d78b23025c9c9f6288e14112411d83f44bcf85a8 (diff) | |
download | cpython-git-f31cb0cbcfa509628d2e15ee3eb891dfbaa5561e.tar.gz |
One more multiple exception catch should be in a tuple.
Diffstat (limited to 'Lib/csv.py')
-rw-r--r-- | Lib/csv.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/csv.py b/Lib/csv.py index 740efd5fb4..37b9e16c31 100644 --- a/Lib/csv.py +++ b/Lib/csv.py @@ -419,7 +419,7 @@ class Sniffer: else: # attempt typecast try: colType(header[col]) - except ValueError, TypeError: + except (ValueError, TypeError): hasHeader += 1 else: hasHeader -= 1 |