aboutsummaryrefslogtreecommitdiffstats
path: root/app/app/config_binding_service/controller.py
diff options
context:
space:
mode:
Diffstat (limited to 'app/app/config_binding_service/controller.py')
-rw-r--r--app/app/config_binding_service/controller.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/app/config_binding_service/controller.py b/app/app/config_binding_service/controller.py
index 943837c..c2eb21c 100644
--- a/app/app/config_binding_service/controller.py
+++ b/app/app/config_binding_service/controller.py
@@ -36,7 +36,7 @@ def _get_helper(json_expecting_func, **kwargs):
response, status_code, mimetype = exc.response, exc.code, "text/plain"
except client.CantGetConfig as exc:
response, status_code, mimetype = exc.response, exc.code, "text/plain"
- except Exception as exc:
+ except Exception:
response, status_code, mimetype = "Unknown error", 500, "text/plain"
return response, status_code, mimetype