Corrected dependency conflicts with the recently merged requirements.txt file.

Updated minor formatting issue with app's run.py file.
This commit is contained in:
Matt Scott
2023-02-17 18:32:36 -05:00
parent 1e86ef676a
commit d12f03c734
2 changed files with 3 additions and 3 deletions

2
run.py
View File

@@ -3,4 +3,4 @@ from powerdnsadmin import create_app
if __name__ == '__main__':
app = create_app()
app.run(debug = True, host=app.config.get('BIND_ADDRESS', '127.0.0.1'), port=app.config.get('PORT', '9191'))
app.run(debug=True, host=app.config.get('BIND_ADDRESS', '127.0.0.1'), port=app.config.get('PORT', '9191'))