diff options
author | sergeyu@chromium.org <sergeyu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-12-28 19:10:46 +0000 |
---|---|---|
committer | sergeyu@chromium.org <sergeyu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-12-28 19:10:46 +0000 |
commit | 39bd290893ffe32a463231c19445d1de7744986f (patch) | |
tree | a53bb2419db55311a272836a8fcac456dcddb657 | |
parent | d770b89f5b5c271027625b2e0bbf328962aef79d (diff) | |
download | chromium_src-39bd290893ffe32a463231c19445d1de7744986f.zip chromium_src-39bd290893ffe32a463231c19445d1de7744986f.tar.gz chromium_src-39bd290893ffe32a463231c19445d1de7744986f.tar.bz2 |
Fix python syntax error in register_host.py introduced by r111427.
TBR=maruel@chromium.org
TEST=register_host.py works as expected.
Review URL: http://codereview.chromium.org/8956058
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@115903 0039d316-1c4b-4281-b951-d872f2087c98
-rwxr-xr-x | remoting/tools/register_host.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/remoting/tools/register_host.py b/remoting/tools/register_host.py index 6530d0e..0b0b4ea 100755 --- a/remoting/tools/register_host.py +++ b/remoting/tools/register_host.py @@ -50,7 +50,7 @@ def main(): params = ('{"data":{' + '"hostId": "%(hostId)s",' + '"hostName": "%(hostName)s",' + - '"publicKey": "%(publicKey)s"}}') % + '"publicKey": "%(publicKey)s"}}') % \ {'hostId': host_id, 'hostName': host_name, 'publicKey': public_key} headers = {"Authorization": "GoogleLogin auth=" + auth_token, |