diasporadiaries

a platform for writing stories with personal accounts and messages
git clone git://parazyd.org/diasporadiaries.git
Log | Files | Refs | Submodules | README | LICENSE

commit 1e98e787da7d72f045272344bf0dc04df8f9874f
parent 0ca5fb5e611952e389634298437a65ca7a67fd09
Author: parazyd <parazyd@dyne.org>
Date:   Sun, 27 Jan 2019 17:48:50 +0100

Make run.py an if/else.

Diffstat:
Mrun.py | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/run.py b/run.py @@ -38,5 +38,5 @@ if __name__ == '__main__': if args.d: app.run(host=args.l, port=args.p, threaded=True, debug=args.d) - - run(app, args.l, args.p) + else: + run(app, args.l, args.p)