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

Unified Diff: buildbot/prebuilt.py

Issue 6871033: Fix typo in Packages URLs. (Closed) Base URL: http://git.chromium.org/git/chromite.git@master
Patch Set: Update unit tests. Created 9 years, 8 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 | buildbot/prebuilt_unittest.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: buildbot/prebuilt.py
diff --git a/buildbot/prebuilt.py b/buildbot/prebuilt.py
index 7c2652e63632003e08a50def726522d6d4e8c7eb..c40624f4a0ef6022bf789b8e7df3b8f39f8090e9 100755
--- a/buildbot/prebuilt.py
+++ b/buildbot/prebuilt.py
@@ -571,7 +571,7 @@ class PrebuiltUploader(object):
# Record URL where prebuilts were uploaded.
url_value = '%s/%s/' % (self._binhost_base_url.rstrip('/'),
- url_suffix.rstrip('/'))
+ packages_url_suffix.rstrip('/'))
if git_sync:
git_file = os.path.join(build_path, _PREBUILT_MAKE_CONF[_HOST_TARGET])
RevGitFile(git_file, url_value, key=key)
@@ -617,7 +617,7 @@ class PrebuiltUploader(object):
# Record URL where prebuilts were uploaded.
url_value = '%s/%s/' % (self._binhost_base_url.rstrip('/'),
- url_suffix.rstrip('/'))
+ packages_url_suffix.rstrip('/'))
if git_sync:
git_file = DeterminePrebuiltConfFile(build_path, board)
RevGitFile(git_file, url_value, key=key)
« no previous file with comments | « no previous file | buildbot/prebuilt_unittest.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698