Handle case of no numeric portion of issue number

git-svn-id: http://comictagger.googlecode.com/svn/trunk@288 6c5673fe-1810-88d6-992b-cd32ca31540c
This commit is contained in:
beville@gmail.com 2012-12-22 01:19:14 +00:00
parent bd9f314496
commit 7614e95084

View File

@ -56,6 +56,9 @@ class IssueString:
def asString( self, pad = 0 ):
#return the float, left side zero-padded, with suffix attached
if self.num is None:
return self.suffix
negative = self.num < 0
num_f = abs(self.num)
@ -85,6 +88,8 @@ class IssueString:
def asInt( self ):
#return the int version of the float
if self.num is None:
return None
return int( self.num )