Fix variable 'success' that is referenced before assignment

This commit is contained in:
Danilo Akamine
2015-09-07 14:46:08 -03:00
parent a9f54d05b2
commit 80df97b8d0

View File

@@ -177,15 +177,15 @@ def run_flow(flow, storage, flags, http=None):
success = True success = True
break break
flags.noauth_local_webserver = not success flags.noauth_local_webserver = not success
if not success: if not success:
print('Failed to start a local webserver listening ' print('Failed to start a local webserver listening '
'on either port 8080') 'on either port 8080')
print('or port 8090. 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('running programs that may be blocking or using those ports.')
print() print()
print('Falling back to --noauth_local_webserver and continuing with') print('Falling back to --noauth_local_webserver and continuing with')
print('authorization.') print('authorization.')
print() print()
if not flags.noauth_local_webserver: if not flags.noauth_local_webserver:
oauth_callback = 'http://%s:%s/' % (flags.auth_host_name, port_number) oauth_callback = 'http://%s:%s/' % (flags.auth_host_name, port_number)