Changeset 555 for pkpgcounter/trunk/pkpgpdls/lidil.py
- Timestamp:
- 12/09/07 15:26:15 (17 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
pkpgcounter/trunk/pkpgpdls/lidil.py
r532 r555 52 52 class Parser(pdlparser.PDLParser) : 53 53 """A parser for HP LIDIL documents.""" 54 format = "Hewlett-Packard LIDIL" 54 55 def isValid(self) : 55 56 """Returns True if data is LIDIL, else False.""" … … 64 65 if self.firstblock.startswith(BOFMarker) \ 65 66 and self.lastblock.endswith(EOFMarker) : 66 self.logdebug("DEBUG: Input file is in the Hewlett-Packard LIDIL format.")67 67 return True 68 68 else :