File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 1
1
Release Log
2
2
===========
3
+ * 0.3.15 - March 21, 2016
4
+ - Fix string format when `empty_attribute_default = None ` (#45)
5
+ - Include tests in release source tarball (#46)
3
6
* 0.3.14 - March 18, 2016
4
7
- Add `CONSTANTS.empty_attribute_default ` to customize value returned for empty attributes (#44)
5
8
* 0.3.13 - March 14, 2016
Original file line number Diff line number Diff line change 1
- VERSION = (0 , 3 , 14 )
1
+ VERSION = (0 , 3 , 15 )
2
2
__version__ = '.' .join (map (str , VERSION ))
3
3
__author__ = "Derek Gulbranson"
4
4
__author_email__ = '[email protected] '
Original file line number Diff line number Diff line change @@ -154,8 +154,7 @@ class Constants(object):
154
154
"""
155
155
empty_attribute_default = ''
156
156
"""
157
- Default return value for empty attributes. Setting this to something other than empty
158
- string will causes :py:attr:`string_format` not to work.
157
+ Default return value for empty attributes.
159
158
160
159
.. doctest::
161
160
You can’t perform that action at this time.
0 commit comments