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
8989
9090``pip install nameparser ``
9191
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
9493install with pip using the command below.
9594
9695``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 )
22__version__ = '.' .join (map (str , VERSION ))
33__author__ = "Derek Gulbranson"
44__author_email__ = '[email protected] '
Original file line number Diff line number Diff line change @@ -390,8 +390,10 @@ def parse_full_name(self):
390390 self .nickname_list = []
391391 self .unparsable = True
392392
393- if not isinstance ( self . _full_name , text_types ) :
393+ try :
394394 self ._full_name = u (self ._full_name , self .ENCODING )
395+ except TypeError :
396+ pass
395397
396398 self .pre_process ()
397399
You can’t perform that action at this time.
0 commit comments