| Index: remoting/tools/gaia_auth.py
|
| diff --git a/remoting/tools/gaia_auth.py b/remoting/tools/gaia_auth.py
|
| index da364e0988de6ee0cf9e63223537b6b8b5687943..392f2f3d2549ec97bebb31468ed980851efb15f8 100644
|
| --- a/remoting/tools/gaia_auth.py
|
| +++ b/remoting/tools/gaia_auth.py
|
| @@ -6,10 +6,10 @@ import getpass
|
| import os
|
| import urllib
|
|
|
| -default_gaia_url = "https://www.google.com:443/accounts/ClientLogin"
|
| +DEFAULT_GAIA_URL = "https://www.google.com:443/accounts/ClientLogin"
|
|
|
| class GaiaAuthenticator:
|
| - def __init__(self, service, url = default_gaia_url):
|
| + def __init__(self, service, url = DEFAULT_GAIA_URL):
|
| self._service = service
|
| self._url = url
|
|
|
|
|