Changeset 555 for pkpgcounter/trunk/pkpgpdls/zjstream.py
- Timestamp:
- 12/09/07 15:26:15 (17 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
pkpgcounter/trunk/pkpgpdls/zjstream.py
r532 r555 32 32 """Returns True if data is ZjStream, else False.""" 33 33 if self.firstblock[:4] == "ZJZJ" : 34 self. logdebug("DEBUG: Input file is in the Zenographics ZjStream (little endian) format.")34 self.format = "Zenographics ZjStream (little endian)" 35 35 return self.littleEndian() 36 36 elif self.firstblock[:4] == "JZJZ" : 37 self. logdebug("DEBUG: Input file is in the Zenographics ZjStream (big endian) format.")37 self.format = "Zenographics ZjStream (big endian)" 38 38 return self.bigEndian() 39 39 else :