trim extra whitespace from cleaned up HTML

git-svn-id: http://comictagger.googlecode.com/svn/trunk@97 6c5673fe-1810-88d6-992b-cd32ca31540c
This commit is contained in:
beville@gmail.com 2012-11-27 18:28:44 +00:00
parent 360e2313eb
commit 1ab03196bb

View File

@ -266,6 +266,9 @@ class ComicVineTalker(QObject):
newstring = newstring.replace(' ',' ')
newstring = newstring.replace('&','&')
newstring = newstring.strip()
return newstring