From 3ef5a12e8d59e84914f84114ad4a69f0f21ef8d6 Mon Sep 17 00:00:00 2001 From: Dominik George <dominik.george@teckids.org> Date: Fri, 9 Oct 2020 13:00:27 +0200 Subject: [PATCH] Fix f string --- bigbluebutton/django/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bigbluebutton/django/views.py b/bigbluebutton/django/views.py index 010879f..fb0700b 100644 --- a/bigbluebutton/django/views.py +++ b/bigbluebutton/django/views.py @@ -64,7 +64,7 @@ class APIView(View): return self._success("", res) except TypeError: return self._error( - 404, "xInfraBlueUnknownAPICall", "The API call {method} is not known" + 404, "xInfraBlueUnknownAPICall", f"The API call {method} is not known" ) def _xml_response( -- GitLab