summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ickweb/app.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ickweb/app.py b/ickweb/app.py
index 1f3f09c..25d9ed1 100644
--- a/ickweb/app.py
+++ b/ickweb/app.py
@@ -65,7 +65,7 @@ def create_app(our_url, controller, client_secret):
'scope': ' '.join(scopes),
'client_id': client_id,
'state': 'FIXME',
- 'redirect_uri': '{}/web/callback'.format(our_url),
+ 'redirect_uri': '{}/callback'.format(our_url),
}
url = '{}/auth?{}'.format(controller, urllib.parse.urlencode(params))
headers = {