Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1749)

Unified Diff: autoupdate.py

Issue 3785009: Fix extra http:// (Closed) Base URL: http://git.chromium.org/git/dev-util.git
Patch Set: Created 10 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: autoupdate.py
diff --git a/autoupdate.py b/autoupdate.py
index fae2a71f83858cb84e0c7360eedfdad4d5a24c4d..b432b91beef8d25494b0ab51df96755f0d3f38aa 100644
--- a/autoupdate.py
+++ b/autoupdate.py
@@ -430,7 +430,7 @@ class Autoupdate(BuildObject):
if filename is None:
_LogMessage('unable to find image for board %s' % board_id)
return self.GetNoUpdatePayload()
- url = 'http://%s/static/%s' % (self.hostname, filename)
+ url = '%s/static/%s' % (self.hostname, filename)
_LogMessage('returning update payload ' + url)
# Factory install is using memento updater which is using the sha-1 hash so
# setting sha-256 to an empty string.
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698