Index: recipe_modules/properties/example.py |
diff --git a/recipe_modules/properties/example.py b/recipe_modules/properties/example.py |
index dd5eb133cfb46e4c59597d818fe843dcad3793fb..59456060dc398caaaef27cff8b576db8a53e30b0 100644 |
--- a/recipe_modules/properties/example.py |
+++ b/recipe_modules/properties/example.py |
@@ -18,8 +18,7 @@ def RunSteps(api, test_prop, param_name_test): |
api.step('echo', ['echo'] + [repr(test_prop), repr(param_name_test)]) |
properties = api.properties.thaw() |
- api.step('echo all', ['echo'] + |
- [repr(list(sorted(api.properties.thaw().iteritems())))]) |
+ api.step('echo all', ['echo'] + map(repr, sorted(properties.iteritems()))) |
# It should behave like a real dictionary. |
assert len(properties) == len(api.properties) |