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

Unified Diff: recipe_modules/properties/api.py

Issue 1344583003: Recipe package system. (Closed) Base URL: git@github.com:luci/recipes-py.git@master
Patch Set: Recompiled proto Created 5 years, 3 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 | « recipe_modules/path/__init__.py ('k') | recipe_modules/properties/example.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: recipe_modules/properties/api.py
diff --git a/recipe_modules/properties/api.py b/recipe_modules/properties/api.py
index 3e5a63003062834ab7dbd3ce1de84a24662520f8..4ae8543024c66e069197118fa69e35fa9855746e 100644
--- a/recipe_modules/properties/api.py
+++ b/recipe_modules/properties/api.py
@@ -2,7 +2,7 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
-from infra.libs.infra_types import freeze, thaw
+from recipe_engine.types import freeze
from recipe_engine import recipe_api
import collections
@@ -45,4 +45,4 @@ class PropertiesApi(recipe_api.RecipeApiPlain, collections.Mapping):
def thaw(self):
"""Returns a vanilla python jsonish dictionary of properties."""
- return thaw(self._engine.properties)
+ return dict(self._engine.properties)
« no previous file with comments | « recipe_modules/path/__init__.py ('k') | recipe_modules/properties/example.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698