commit | f31cb0cbcfa509628d2e15ee3eb891dfbaa5561e | [log] [tgz] |
---|---|---|
author | Raymond Hettinger <python@rcn.com> | Thu Jun 12 04:05:00 2003 +0000 |
committer | Raymond Hettinger <python@rcn.com> | Thu Jun 12 04:05:00 2003 +0000 |
tree | 5dc268ffb78f127a0c3d63951c6e4c5114a78367 | |
parent | d78b23025c9c9f6288e14112411d83f44bcf85a8 [diff] |
One more multiple exception catch should be in a tuple.
diff --git a/Lib/csv.py b/Lib/csv.py index 740efd5..37b9e16 100644 --- a/Lib/csv.py +++ b/Lib/csv.py
@@ -419,7 +419,7 @@ else: # attempt typecast try: colType(header[col]) - except ValueError, TypeError: + except (ValueError, TypeError): hasHeader += 1 else: hasHeader -= 1