From aec047717091a2184dcf0ab42ddb23ec41aebe01 Mon Sep 17 00:00:00 2001 From: "beville@gmail.com" Date: Tue, 4 Dec 2012 19:45:42 +0000 Subject: [PATCH] Cleaned up comments git-svn-id: http://comictagger.googlecode.com/svn/trunk@203 6c5673fe-1810-88d6-992b-cd32ca31540c --- issuestring.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/issuestring.py b/issuestring.py index 54efbe2..4b892a2 100644 --- a/issuestring.py +++ b/issuestring.py @@ -56,7 +56,7 @@ class IssueString: self.suffix = parts[1] def asString( self, pad = 0 ): - #return the float, left size zero-padded, with suffix attached + #return the float, left side zero-padded, with suffix attached negative = self.num < 0 num_f = abs(self.num) @@ -81,11 +81,11 @@ class IssueString: return num_s def asFloat( self ): - #return the float, left size zero-padded, with suffix attached + #return the float, with no suffix return self.num def asInt( self ): - #return the int, left size zero-padded, with suffix attached + #return the int version of the float return int( self.num )