Skip to content

Commit

Permalink
v0.0.64
Browse files Browse the repository at this point in the history
  • Loading branch information
akariv committed Nov 17, 2019
1 parent 1be9717 commit 741f530
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dataflows/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.0.63
0.0.64
4 changes: 2 additions & 2 deletions dataflows/processors/load.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,9 +159,9 @@ def __init__(self, load_source, name=None, resources=None, strip=True, limit_row
def process_datapackage(self, dp: Package):
try:
return self.safe_process_datapackage(dp)
except Exception as e:
except Exception as e:
raise e from Exception('Failed to run load with load source {!r} and options {!r}'
.format(self.load_source, self.options))
.format(self.load_source, self.options))

def safe_process_datapackage(self, dp: Package):

Expand Down

0 comments on commit 741f530

Please sign in to comment.