Add a trailing comma to make future diffs cleaner

This commit is contained in:
Calen Pennington
2017-04-28 15:40:46 -04:00
parent 1c78d7c02e
commit 0ca11f6428

View File

@@ -78,7 +78,7 @@ def intercept_errors(api_error, ignore_errors=None):
args=args,
kwargs=kwargs,
exception=ex.developer_message if hasattr(ex, 'developer_message') else repr(ex),
caller=caller.strip()
caller=caller.strip(),
)
LOGGER.exception(msg)
raise api_error(msg)