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

Unified Diff: scripts/master/master_utils.py

Issue 12300004: Build scripts refactor to support multislave (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: rebase Created 7 years, 10 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 | « scripts/common/chromium_utils.py ('k') | scripts/master/slaves_list.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: scripts/master/master_utils.py
diff --git a/scripts/master/master_utils.py b/scripts/master/master_utils.py
index 3669651423eb0fb67cee5b36f2b780579ef757a5..8a6933b7117af36f227504cbe45966406cb1fc9a 100644
--- a/scripts/master/master_utils.py
+++ b/scripts/master/master_utils.py
@@ -22,7 +22,7 @@ if int(buildbot.version.split('.')[1]) == 7:
else:
import master.chromium_status_bb8 as chromium_status
-from master import slaves_list
+from common import chromium_utils
import config
@@ -120,7 +120,7 @@ def VerifySetup(c, slaves):
# Make sure every defined slave is used.
for s in slaves.GetSlaves():
- name = slaves_list.EntryToSlaveName(s)
+ name = chromium_utils.EntryToSlaveName(s)
if not name in slaves_name:
raise InvalidConfig('Slave %s defined in your slaves_list is not '
'referenced at all' % name)
« no previous file with comments | « scripts/common/chromium_utils.py ('k') | scripts/master/slaves_list.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698