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

Unified Diff: scripts/slave/recipe_configs_util.py

Issue 17635005: Make blink_trybot recipe work on windows (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Fix presubmit + move polyfill (retry) Created 7 years, 6 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
Index: scripts/slave/recipe_configs_util.py
diff --git a/scripts/slave/recipe_configs_util.py b/scripts/slave/recipe_configs_util.py
index 80ebaded3d8df71e30ddec0e4ced0b7194ba6f3c..7504a73aef59a4efb17e0457a2987bad3ddfad7a 100644
--- a/scripts/slave/recipe_configs_util.py
+++ b/scripts/slave/recipe_configs_util.py
@@ -373,9 +373,9 @@ class ConfigGroup(ConfigBase):
assert not val, "Got extra keys while setting ConfigGroup: %s" % val
def as_jsonish(self, include_hidden=False):
- return {
- n: v.as_jsonish(include_hidden) for n, v in self._type_map.iteritems()
- if (include_hidden or not v._hidden)} # pylint: disable=W0212
+ return dict(
+ (n, v.as_jsonish(include_hidden)) for n, v in self._type_map.iteritems()
+ if (include_hidden or not v._hidden)) # pylint: disable=W0212
def reset(self):
for v in self._type_map.values():

Powered by Google App Engine
This is Rietveld 408576698