From 7ebeb44b2231b7f98058cd2c0951751a3162ecad Mon Sep 17 00:00:00 2001 From: Sunil Mohan Adapa Date: Sun, 23 Mar 2014 18:56:51 +0530 Subject: [PATCH] Pass arguments to form parts as it is mean to --- plugin_mount.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin_mount.py b/plugin_mount.py index cf0f26880..4983ea28a 100644 --- a/plugin_mount.py +++ b/plugin_mount.py @@ -140,7 +140,7 @@ class FormPlugin(): """If the user has tried to fill in the form, process it, otherwise, just display a default form.""" if kwargs: kwargs['message'] = self.process_form(**kwargs) - parts = get_parts(self) + parts = get_parts(self, **kwargs) return self.fill_template(**parts) def process_form(self, **kwargs):