From e6fa66bd2c18632ef0608c63fb024b01931a5272 Mon Sep 17 00:00:00 2001 From: Chris McDonough Date: Sun, 18 Apr 2010 21:54:20 +0000 Subject: - Use "Venusian" (`http://docs.repoze.org/venusian `) to perform ``bfg_view`` decorator scanning rather than relying on a BFG-internal decorator scanner. (Truth be told, Venusian is really just a generalization of the BFG-internal decorator scanner). - A new install-time dependency on the ``venusian`` distribution was added. - Remove ``repoze.bfg.compat.pkgutil_26.py`` and import alias ``repoze.bfg.compat.walk_packages``. These were only required by internal scanning machinery; Venusian replaced the internal scanning machinery, so these are no longer required. --- repoze/bfg/zcml.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'repoze/bfg/zcml.py') diff --git a/repoze/bfg/zcml.py b/repoze/bfg/zcml.py index 3935303c5..7ba82bfe7 100644 --- a/repoze/bfg/zcml.py +++ b/repoze/bfg/zcml.py @@ -582,7 +582,7 @@ def scan(_context, package): _context.action( discriminator=None, callable=config.scan, - args=(package, _context.info) + args=(package, None, _context.info) ) class IAdapterDirective(Interface): -- cgit v1.2.3