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

View File

@ -40,7 +40,7 @@ Flask-SeaSurf==1.1.1
PyYAML==6.0
Jinja2==3.1.2
itsdangerous==2.1.2
werkzeug==2.1.2
cryptography==36.0.2
werkzeug==2.2.2
cryptography==38.0.0
flask_session_captcha==1.3.0
lxml==4.6.5

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'))