Merge pull request #450 from Spitfireap/fixed-super-call

fixed super call in modoboa's script
This commit is contained in:
Antoine Nguyen
2022-11-04 09:41:20 +01:00
committed by GitHub

View File

@@ -198,7 +198,7 @@ class Modoboa(base.Installer):
if db_dump_path is not None:
return db_dump_path
return super().get_sql_schema_path()()
return super(Modoboa, self).get_sql_schema_path()
def get_packages(self):
"""Include extra packages if needed."""