diff options
author | Patrice Clement <monsieurp@gentoo.org> | 2017-04-23 21:53:25 +0200 |
---|---|---|
committer | Patrice Clement <monsieurp@gentoo.org> | 2017-04-23 21:53:36 +0200 |
commit | 73646b04be79d78f84ae50306ee1190c23034179 (patch) | |
tree | f1b10357db57a720ede67013a68710eab1989696 | |
parent | sync: fix a missing .items to iterate on dict (diff) | |
download | grumpy-73646b04be79d78f84ae50306ee1190c23034179.tar.gz grumpy-73646b04be79d78f84ae50306ee1190c23034179.tar.bz2 grumpy-73646b04be79d78f84ae50306ee1190c23034179.zip |
refactor two sentences to fit the 80-character wide limit
-rwxr-xr-x | manage.py | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -6,8 +6,10 @@ from flask_script import Manager, Shell from backend import app, db from backend.lib import sync -# TODO: Replace this with flask 0.11 "flask" CLI and the extra commands support via click therein - http://flask.pocoo.org/docs/0.11/cli/ -# TODO: This would then allow FLASK_DEBUG=1 automatically reloading the server on code changes when launched with "flask run" +# TODO: Replace this with flask 0.11 "flask" CLI and the extra commands support +# via click therein - http://flask.pocoo.org/docs/0.11/cli/ +# TODO: This would then allow FLASK_DEBUG=1 automatically reloading the server +# on code changes when launched with "flask run" manager = Manager(app) |