Changeset 520 for pkpgcounter/trunk/pkpgpdls/spl1.py
- Timestamp:
- 11/28/07 00:52:52 (17 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
pkpgcounter/trunk/pkpgpdls/spl1.py
r493 r520 37 37 def isValid(self) : 38 38 """Returns True if data is SPL1, else False.""" 39 if ((self. firstblock[:128].find("\033%-12345X") != -1) and \40 (self. firstblock.find("$PJL ") != -1) and \41 ((self. firstblock.find("LANGUAGE=SMART") != -1) or \42 (self. firstblock.find("LANGUAGE = SMART") != -1))) :39 if ((self.parent.firstblock[:128].find("\033%-12345X") != -1) and \ 40 (self.parent.firstblock.find("$PJL ") != -1) and \ 41 ((self.parent.firstblock.find("LANGUAGE=SMART") != -1) or \ 42 (self.parent.firstblock.find("LANGUAGE = SMART") != -1))) : 43 43 self.logdebug("DEBUG: Input file is in the SPL1 format.") 44 44 return True