Show
Ignore:
Timestamp:
09/05/06 23:44:49 (18 years ago)
Author:
jerome
Message:

Code cleanups.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • pkpgcounter/trunk/pkpgpdls/ooo.py

    r357 r387  
    3232    """A parser for OpenOffice.org documents.""" 
    3333    def isValid(self) :         
    34         """Returns 1 if data is DVI, else 0.""" 
     34        """Returns True if data is OpenDocument, else False.""" 
    3535        if self.firstblock[:2] == "PK" : 
    3636            try : 
     
    3939                self.metaxml = self.archive.read("meta.xml") 
    4040            except :     
    41                 return 0 
     41                return False 
    4242            else : 
    43                 self.logdebug("DEBUG: Input file is in the OpenOffice.org format.") 
    44                 return 1 
     43                self.logdebug("DEBUG: Input file is in the OpenDocument (ISO/IEC DIS 26300) format.") 
     44                return True 
    4545        else :     
    46             return 0 
     46            return False 
    4747             
    4848    def getJobSize(self) :