From 0c1dd1831642f274eaef605fb2b75ac536791612 Mon Sep 17 00:00:00 2001 From: Matthijs Kooijman Date: Sat, 7 Aug 2010 21:37:38 +0200 Subject: [PATCH] handlers: Make create_action pass any kwargs to the constructor. --- src/lib/backupninja/handlers/__init__.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/lib/backupninja/handlers/__init__.py b/src/lib/backupninja/handlers/__init__.py index 4846771..50abb41 100644 --- a/src/lib/backupninja/handlers/__init__.py +++ b/src/lib/backupninja/handlers/__init__.py @@ -107,10 +107,11 @@ class Action(object): except ConfigParser.NoOptionError: raise config.ConfigError("Option '%s' in section '%s' is mandatory, please configure it" % (option, section)) -def create_action(ty): +def create_action(ty, **kwargs): """ Create a new (subclass of) Action object for an action with the - given type. + given type. Any extra keyword arguments are passed to the + constructor. If the handler class for this type cannot be loaded, an exception is thrown. @@ -137,7 +138,7 @@ def create_action(ty): % (module.__file__)) # Call the "handler" function to create the actual action - action = module.handler() + action = module.handler(**kwargs) # Check if the handler returned is really a subclass of Action if not isinstance(action, Action): -- 2.30.2