Changeset 555 for pkpgcounter/trunk/pkpgpdls/cfax.py
- Timestamp:
- 12/09/07 15:26:15 (17 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
pkpgcounter/trunk/pkpgpdls/cfax.py
r539 r555 29 29 class Parser(pdlparser.PDLParser) : 30 30 """A parser for Structured Fax documents.""" 31 format = "Structured Fax" 31 32 def isValid(self) : 32 33 """Returns True if data is Structured Fax, else False.""" 33 34 if self.firstblock.startswith("Sfff") : 34 self.logdebug("DEBUG: Input file is in the Structured Fax format.")35 35 return True 36 36 else :