From 0ca11f6428f993b26d6d806ce93ba3c07289b02b Mon Sep 17 00:00:00 2001 From: Calen Pennington Date: Fri, 28 Apr 2017 15:40:46 -0400 Subject: [PATCH] Add a trailing comma to make future diffs cleaner --- openedx/core/djangoapps/user_api/helpers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openedx/core/djangoapps/user_api/helpers.py b/openedx/core/djangoapps/user_api/helpers.py index 851bf4914c..230957fc09 100644 --- a/openedx/core/djangoapps/user_api/helpers.py +++ b/openedx/core/djangoapps/user_api/helpers.py @@ -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)