Fixed bug in python backend

This commit is contained in:
Cayo Puigdefabregas 2021-02-01 21:05:11 +01:00 committed by Santiago Lamora
parent 45bf31c9da
commit 48ef6d63bc
1 changed files with 1 additions and 1 deletions

View File

@ -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(),