From fa6625a2c6f6c06519b464f7abfcc3d10a8bedb3 Mon Sep 17 00:00:00 2001 From: Danilo Akamine Date: Mon, 7 Sep 2015 13:28:57 -0300 Subject: [PATCH] Fix port in error message. Port 9090 is not default --- oauth2client/tools.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oauth2client/tools.py b/oauth2client/tools.py index c74224b..2187e0e 100644 --- a/oauth2client/tools.py +++ b/oauth2client/tools.py @@ -180,7 +180,7 @@ def run_flow(flow, storage, flags, http=None): if not success: print('Failed to start a local webserver listening ' 'on either port 8080') - print('or port 9090. Please check your firewall settings and locally') + print('or port 8090. Please check your firewall settings and locally') print('running programs that may be blocking or using those ports.') print() print('Falling back to --noauth_local_webserver and continuing with')