diff options
author | simonmorris@chromium.org <simonmorris@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-07-31 18:49:20 +0000 |
---|---|---|
committer | simonmorris@chromium.org <simonmorris@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-07-31 18:49:20 +0000 |
commit | 2e244ab75bf707c2dc6d5dee0dc733718596c73d (patch) | |
tree | cd0d01e45bf31e1c7d2151ce3701fb6d7e35d372 /remoting | |
parent | fdb0ef8e873cd7dbe772f984272a785e2c3bb76e (diff) | |
download | chromium_src-2e244ab75bf707c2dc6d5dee0dc733718596c73d.zip chromium_src-2e244ab75bf707c2dc6d5dee0dc733718596c73d.tar.gz chromium_src-2e244ab75bf707c2dc6d5dee0dc733718596c73d.tar.bz2 |
[Chromoting] Make virtual Me2Me explicitly ask for an app-specific password.
Review URL: https://chromiumcodereview.appspot.com/10831089
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149236 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting')
-rwxr-xr-x | remoting/tools/me2me_virtual_host.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/remoting/tools/me2me_virtual_host.py b/remoting/tools/me2me_virtual_host.py index 3409242..09373d3 100755 --- a/remoting/tools/me2me_virtual_host.py +++ b/remoting/tools/me2me_virtual_host.py @@ -93,7 +93,7 @@ class Authentication: """ print "Email:", self.login = raw_input() - password = getpass.getpass("Password: ") + password = getpass.getpass("App-specific password: ") chromoting_auth = gaia_auth.GaiaAuthenticator('chromoting') self.chromoting_auth_token = chromoting_auth.authenticate(self.login, |