Skip to content

Commit

Permalink
Py3 for ebserverflask.py #89
Browse files Browse the repository at this point in the history
  • Loading branch information
mmagnus committed Sep 20, 2019
1 parent 1bacf85 commit dbda20c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions geekbookapp.py
Original file line number Diff line number Diff line change
Expand Up @@ -225,9 +225,9 @@ def start_flask(args):
if not args.noflask and not args.debug and not args.update:
logger.info("Start off flask!")
if args.public:
os.system('python "' + PATH + os.sep + 'geekbook/engine/webserverflask.py" --public &')
os.system('python3 "' + PATH + os.sep + 'geekbook/engine/webserverflask.py" --public &')
else:
os.system('python "' + PATH + os.sep + 'geekbook/engine/webserverflask.py" &')
os.system('python3 "' + PATH + os.sep + 'geekbook/engine/webserverflask.py" &')


def start_gitweb():
Expand Down

0 comments on commit dbda20c

Please sign in to comment.