| Index: recipe_engine/loader.py
|
| diff --git a/recipe_engine/loader.py b/recipe_engine/loader.py
|
| index 2ea34f3c76040b405bc8b038157886c63d49ae21..eb3ac5f0ebc7b7fb4697895a26d1cb2109c4386a 100644
|
| --- a/recipe_engine/loader.py
|
| +++ b/recipe_engine/loader.py
|
| @@ -172,6 +172,7 @@ class UniverseView(collections.namedtuple('UniverseView', 'universe package')):
|
| This is used mainly for dependency loading -- a package can only see modules
|
| in itself and packages that it directly depends on.
|
| """
|
| +
|
| def _dep_from_name(self, name):
|
| if '/' in name:
|
| package, module = name.split('/')
|
| @@ -232,7 +233,6 @@ class UniverseView(collections.namedtuple('UniverseView', 'universe package')):
|
| for local_name, (pkg, name) in self.normalize_deps_spec(spec).iteritems()
|
| }
|
|
|
| -
|
| def find_recipe(self, recipe):
|
| if ':' in recipe:
|
| module_name, recipe_name = recipe.split(':')
|
|
|