summaryrefslogtreecommitdiff
path: root/tablib/formats/_dbf.py
diff options
context:
space:
mode:
Diffstat (limited to 'tablib/formats/_dbf.py')
-rw-r--r--tablib/formats/_dbf.py6
1 files changed, 1 insertions, 5 deletions
diff --git a/tablib/formats/_dbf.py b/tablib/formats/_dbf.py
index 710797d..0d1c87b 100644
--- a/tablib/formats/_dbf.py
+++ b/tablib/formats/_dbf.py
@@ -83,9 +83,5 @@ def detect(stream):
else:
_dbf = dbf.Dbf(StringIO(stream), readOnly=True)
return True
- except (ValueError, struct.error):
- # When we try to open up a file that's not a DBF, dbfpy raises a
- # ValueError.
- # When unpacking a string argument with less than 8 chars, struct.error is
- # raised.
+ except Exception:
return False