From 48ef6d63bc7d414ac65cff3fd4f1b21edf3121c9 Mon Sep 17 00:00:00 2001 From: Cayo Puigdefabregas Date: Mon, 1 Feb 2021 21:05:11 +0100 Subject: [PATCH] Fixed bug in python backend --- orchestra/contrib/webapps/backends/python.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/orchestra/contrib/webapps/backends/python.py b/orchestra/contrib/webapps/backends/python.py index 8c7ee35e..fa0b9881 100644 --- a/orchestra/contrib/webapps/backends/python.py +++ b/orchestra/contrib/webapps/backends/python.py @@ -72,7 +72,7 @@ class uWSGIPythonController(WebAppServiceMixin, ServiceController): return context def get_context(self, webapp): - context = super(PHPController, self).get_context(webapp) + context = super(uWSGIPythonController, self).get_context(webapp) options = webapp.get_options() context.update({ 'python_version': webapp.type_instance.get_python_version(),