From ff51bcd1f846053625c3428432020a6623abb419 Mon Sep 17 00:00:00 2001 From: Robert Iannucci Date: Tue, 2 May 2017 16:38:31 -0700 Subject: [PATCH] [bot_update] fix Property default to be actual JSON. R=dnj@chromium.org Bug: Change-Id: I18eb355282f2efc067a6dc70e1136f9a49d3488a Reviewed-on: https://chromium-review.googlesource.com/494306 Reviewed-by: Daniel Jacques Commit-Queue: Robbie Iannucci --- recipes/recipe_modules/bot_update/__init__.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/recipes/recipe_modules/bot_update/__init__.py b/recipes/recipe_modules/bot_update/__init__.py index 8e44beee13..86e7ea3500 100644 --- a/recipes/recipe_modules/bot_update/__init__.py +++ b/recipes/recipe_modules/bot_update/__init__.py @@ -12,7 +12,6 @@ DEPS = [ ] from recipe_engine.recipe_api import Property -from recipe_engine.types import freeze PROPERTIES = { # Gerrit patches will have all properties about them prefixed with patch_. @@ -34,7 +33,7 @@ PROPERTIES = { 'repository': Property(default=None), # Common fields for both systems. - 'deps_revision_overrides': Property(default=freeze({})), + 'deps_revision_overrides': Property(default={}), 'fail_patch': Property(default=None, kind=str), 'parent_got_revision': Property(default=None), 'revision': Property(default=None),