Changeset 1de11fa in ammosreader
- Timestamp:
- 05/28/23 12:14:26 (2 years ago)
- Branches:
- AmmosSource
- Children:
- d6535bd
- Parents:
- 1fb7060
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
ammosreader/AmmosAudioReader.py
r1fb7060 r1de11fa 67 67 byte_string = self.source.read_bytes(total) 68 68 69 if len(byte_string) != total:69 if ((not byte_string) or (len(byte_string) != total)): 70 70 logger.debug("Can not read all %s bytes of data body", total) 71 71 return None
Note:
See TracChangeset
for help on using the changeset viewer.