Skip to content

Commit

Permalink
Merge branch 'release/5.1.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
dyve committed Jan 22, 2015
2 parents 2abfff6 + 8c4f4c4 commit 59b25a7
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
6 changes: 6 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ History
-------


5.1.1 (2015-01-22)
++++++++++++++++++

* Fix checkbox display bug


5.1.0 (2015-01-22)
++++++++++++++++++

Expand Down
2 changes: 1 addition & 1 deletion bootstrap3/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# -*- coding: utf-8 -*-

__version__ = '5.1.0'
__version__ = '5.1.1'
3 changes: 1 addition & 2 deletions bootstrap3/renderers.py
Original file line number Diff line number Diff line change
Expand Up @@ -339,8 +339,7 @@ def wrap_widget(self, html):
if isinstance(self.widget, CheckboxInput):
checkbox_class = add_css_class('checkbox', self.get_size_class())
html = \
'<div class="{klass}">' + \
'{content}</div>'.format(
'<div class="{klass}">{content}</div>'.format(
klass=checkbox_class, content=html
)
return html
Expand Down

0 comments on commit 59b25a7

Please sign in to comment.