Skip to content

Commit 01b6014

Browse files
mpeteuilryanhiebert
authored andcommitted
Pass reader error messages along (#28)
This fixes problems like the one mentioned in issue #27 where using the reader in Python 2.x with it's default `str` type would throw an error, but the error message was overridden. There was a similar change made for issue #5. I don't believe a new test is required for this since https://github.com/ryanhiebert/backports.csv/blob/1.0.5/tests.py#L853-L856 covers the source exception and this is more about the messaging bubbling up. It would be possible if needed to check the message higher up the chain though.
1 parent 2058b9f commit 01b6014

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/backports/csv.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -228,8 +228,8 @@ def __init__(self, fileobj, dialect='excel', **fmtparams):
228228

229229
try:
230230
self.dialect = Dialect.combine(dialect, fmtparams)
231-
except Error:
232-
raise TypeError('Invalid dialect parameters')
231+
except Error as e:
232+
raise TypeError(*e.args)
233233

234234
self.fields = None
235235
self.field = None

0 commit comments

Comments
 (0)