File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -89,8 +89,7 @@ Installation
89
89
90
90
``pip install nameparser ``
91
91
92
- I usually push changes to `PyPi <https://pypi.python.org/pypi/nameparser >`_
93
- pretty quickly. If you want to try out the latest code from GitHub you can
92
+ If you want to try out the latest code from GitHub you can
94
93
install with pip using the command below.
95
94
96
95
``pip install -e git+git://github.com/derek73/python-nameparser.git#egg=nameparser ``
Original file line number Diff line number Diff line change 1
- VERSION = (0 , 3 , 9 )
1
+ VERSION = (0 , 3 , 10 )
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 @@ -390,8 +390,10 @@ def parse_full_name(self):
390
390
self .nickname_list = []
391
391
self .unparsable = True
392
392
393
- if not isinstance ( self . _full_name , text_types ) :
393
+ try :
394
394
self ._full_name = u (self ._full_name , self .ENCODING )
395
+ except TypeError :
396
+ pass
395
397
396
398
self .pre_process ()
397
399
You can’t perform that action at this time.
0 commit comments