Merge pull request #871 from eltermann/master

Removed unused 'load=False' parameter from walk_modules()
This commit is contained in:
Pablo Hoffman 2014-09-02 12:55:04 -03:00
commit acb0a61cf1
1 changed files with 1 additions and 1 deletions

View File

@ -54,7 +54,7 @@ def load_object(path):
return obj
def walk_modules(path, load=False):
def walk_modules(path):
"""Loads a module and all its submodules from a the given module path and
returns them. If *any* module throws an exception while importing, that
exception is thrown back.