Skip to content

Commit 8502fd5

Browse files
committed
Version bump, file field issues fixed (thanks)
1 parent 238fa6b commit 8502fd5

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

bootstrap3/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '2.5.5'
1+
__version__ = '2.5.6'

bootstrap3/forms.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -218,8 +218,10 @@ def render_field_and_label(field, label, field_class='',
218218

219219

220220
def render_form_group(content, css_class=FORM_GROUP_CLASS):
221-
return '<div class="{_class}">{content}</div>'.format(_class=css_class,
222-
content=content)
221+
return '<div class="{klass}">{content}</div>'.format(
222+
klass=css_class,
223+
content=content,
224+
)
223225

224226

225227
def is_widget_required_attribute(widget):

0 commit comments

Comments
 (0)