Fixed bug in python backend

This commit is contained in:
Cayo Puigdefabregas 2021-02-01 21:05:11 +01:00
parent 15d3c4feff
commit d6d3aabd92
1 changed files with 1 additions and 1 deletions

View File

@ -72,7 +72,7 @@ class uWSGIPythonController(WebAppServiceMixin, ServiceController):
return context return context
def get_context(self, webapp): def get_context(self, webapp):
context = super(PHPController, self).get_context(webapp) context = super(uWSGIPythonController, self).get_context(webapp)
options = webapp.get_options() options = webapp.get_options()
context.update({ context.update({
'python_version': webapp.type_instance.get_python_version(), 'python_version': webapp.type_instance.get_python_version(),