Browse Source

category creation fix - remove submit button from kwargs

maiiku 10 years ago
parent
commit
b0f2bffef2
1 changed files with 4 additions and 1 deletions
  1. 4 1
      flaskbb/management/forms.py

+ 4 - 1
flaskbb/management/forms.py

@@ -398,5 +398,8 @@ class CategoryForm(Form):
     submit = SubmitField(_("Save"))
 
     def save(self):
-        category = Category(**self.data)
+        data = self.data
+        # remove the button
+        data.pop('submit', None)
+        category = Category(**data)
         return category.save()