Index: scripts/slave/recipe_modules/isolate/api.py |
diff --git a/scripts/slave/recipe_modules/isolate/api.py b/scripts/slave/recipe_modules/isolate/api.py |
index d067cc3733a590aa88948e932fa6f90247429fbf..27c8e56903cfb144814f3b62e0aee4e45a4b7b8e 100644 |
--- a/scripts/slave/recipe_modules/isolate/api.py |
+++ b/scripts/slave/recipe_modules/isolate/api.py |
@@ -188,7 +188,7 @@ class IsolateApi(recipe_api.RecipeApi): |
# Be robust in the case where swarm_hashes is an empty string |
# instead of an empty dictionary, or similar. |
if not hashes: |
- return {} |
+ return {} # pragma: no covergae |
Sergiy Byelozyorov
2015/02/14 03:47:25
this was needed because I couldn't come up with an
|
return { |
k.encode('ascii'): v.encode('ascii') |
for k, v in hashes.iteritems() |