Skip to content

Commit

Permalink
Version bump, file field issues fixed (thanks)
Browse files Browse the repository at this point in the history
  • Loading branch information
dyve committed Jan 24, 2014
1 parent 238fa6b commit 8502fd5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bootstrap3/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '2.5.5'
__version__ = '2.5.6'
6 changes: 4 additions & 2 deletions bootstrap3/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -218,8 +218,10 @@ def render_field_and_label(field, label, field_class='',


def render_form_group(content, css_class=FORM_GROUP_CLASS):
return '<div class="{_class}">{content}</div>'.format(_class=css_class,
content=content)
return '<div class="{klass}">{content}</div>'.format(
klass=css_class,
content=content,
)


def is_widget_required_attribute(widget):
Expand Down

0 comments on commit 8502fd5

Please sign in to comment.