From 8dc9fb488c4afc556a25100bf2912bf601704ac4 Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Sun, 5 Aug 2018 17:00:54 +0300 Subject: Fix: our url in ./run --- run | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run b/run index 62b994a..c252f99 100755 --- a/run +++ b/run @@ -11,6 +11,6 @@ port = int(sys.argv[3]) with open(client_secret_filename) as f: client_secret = f.readline().strip() -our_url = 'http://localhost:{}'.format(port) +our_url = '{}/web'.format(controller) app = ickweb.create_app(our_url, controller, client_secret) app.run(host='localhost', port=port) -- cgit v1.2.1