Removed unused 'load=False' parameter from walk_modules()

This commit is contained in:
eltermann 2014-09-02 08:33:36 -03:00
parent 5daa14770b
commit 1dff1fbf75
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.