From 1dff1fbf75d8277c52cfdd003966fd7e48b972f1 Mon Sep 17 00:00:00 2001 From: eltermann Date: Tue, 2 Sep 2014 08:33:36 -0300 Subject: [PATCH] Removed unused 'load=False' parameter from walk_modules() --- scrapy/utils/misc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scrapy/utils/misc.py b/scrapy/utils/misc.py index be394eb1d..4cfd35342 100644 --- a/scrapy/utils/misc.py +++ b/scrapy/utils/misc.py @@ -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.