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