From 74293f8b063da37a4dd8a074eafd4909e793d6a3 Mon Sep 17 00:00:00 2001 From: "mike.auty@gmail.com" Date: Thu, 8 Mar 2012 22:41:34 +0000 Subject: [PATCH] Add in None default for PluginImporter. --- volatility/registry.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/volatility/registry.py b/volatility/registry.py index 8031dbc5..340b964d 100644 --- a/volatility/registry.py +++ b/volatility/registry.py @@ -57,7 +57,7 @@ class PluginImporter(object): """This class searches through a comma-separated list of plugins and imports all classes found, based on their path and a fixed prefix. """ - def __init__(self, plugins): + def __init__(self, plugins = None): """Gathers all the plugins from config.PLUGINS Determines their namespaces and maintains a dictionary of modules to filepaths Then imports all modules found