| 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.
|
|
|