Skip to content

Commit

Permalink
Merge branch 'hotfix/0.6.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
idpaterson committed Sep 26, 2016
2 parents 8a960a5 + 27cadfe commit b8f8574
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 3 deletions.
Binary file modified Wunderlist.alfredworkflow
Binary file not shown.
2 changes: 1 addition & 1 deletion lib/alfred-workflow
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "alfred-wunderlist-workflow",
"version": "0.6.2",
"version": "0.6.3",
"dependencies": {},
"private": true,
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion src/alfred-wunderlist-workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ def main(wf):

if __name__ == '__main__':
wf = workflow()
sys.exit(wf.run(main))
sys.exit(wf.run(main, plaintext_exceptions='--commit' in wf.args))
1 change: 1 addition & 0 deletions src/wunderlist/api/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ def report_errors(*args, **kwargs):
response = fn(*args, **kwargs)
if response.status_code > 500:
response.raise_for_status()
return response
return report_errors

def get(path, params=None):
Expand Down

0 comments on commit b8f8574

Please sign in to comment.