Skip to content
Snippets Groups Projects
Commit a263b318 authored by jurgenhaas's avatar jurgenhaas
Browse files

Merge pull request #8 from tamsky/patch-1

Add suggestions from PR#5
parents 5422b0c3 738a0f0d
Branches
Tags
No related merge requests found
...@@ -215,6 +215,10 @@ class ActionModule(object): ...@@ -215,6 +215,10 @@ class ActionModule(object):
msg += ' // ' + error['message'] msg += ' // ' + error['message']
if error.get('description'): if error.get('description'):
msg += ' // ' + error['description'] msg += ' // ' + error['description']
if error.get('subject'):
msg += ' // ' + error['subject']
if error.get('type'):
msg += ' // ' + error['type']
raise ae('%s' % msg) raise ae('%s' % msg)
return content return content
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment