| 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)
|
|
|