use unicode in case of weird things like "1/2" symbol

git-svn-id: http://comictagger.googlecode.com/svn/trunk@562 6c5673fe-1810-88d6-992b-cd32ca31540c
This commit is contained in:
beville@gmail.com 2013-03-30 06:26:41 +00:00
parent fe413b12c1
commit a804a10e0e

View File

@ -39,7 +39,7 @@ class IssueString:
self.suffix = ""
return
self.text = str(text)
self.text = unicode(text)
#strip out non float-y stuff
tmp_num_str = re.sub('[^0-9.-]',"", self.text )