Fix broken runner.py

This commit is contained in:
Michał 2023-09-24 10:48:03 +01:00
parent d19a33501a
commit bdecdaff7c
2 changed files with 5 additions and 1 deletions

View file

@ -132,3 +132,7 @@ compress.init_app(app)
# Yupee! We got there :3
print("Done!")
logging.info("Gallery started successfully!")
if __name__ == "__main__":
app.run()

View file

@ -32,4 +32,4 @@ class OnlyLegs(Application):
return "OnlyLegs"
def load(self):
return util.import_app("onlylegs:create_app()")
return util.import_app("onlylegs.app:app")