Commit ff51bcd1 authored by Robert Iannucci's avatar Robert Iannucci Committed by Commit Bot

[bot_update] fix Property default to be actual JSON.

R=dnj@chromium.org

Bug:
Change-Id: I18eb355282f2efc067a6dc70e1136f9a49d3488a
Reviewed-on: https://chromium-review.googlesource.com/494306Reviewed-by: 's avatarDaniel Jacques <dnj@chromium.org>
Commit-Queue: Robbie Iannucci <iannucci@chromium.org>
parent e0a1afbf
......@@ -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),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment