Use break instead of StopIteration - fixes #17

This commit is contained in:
2019-03-10 10:34:02 +01:00
parent d5f7cfd301
commit 85eb7249ad

View File

@@ -234,7 +234,7 @@ def read_VMP_modules(fileobj, read_module_data=True):
while True: while True:
module_magic = fileobj.read(len(b'MODULE')) module_magic = fileobj.read(len(b'MODULE'))
if len(module_magic) == 0: # end of file if len(module_magic) == 0: # end of file
raise StopIteration break
elif module_magic != b'MODULE': elif module_magic != b'MODULE':
raise ValueError("Found %r, expecting start of new VMP MODULE" % module_magic) raise ValueError("Found %r, expecting start of new VMP MODULE" % module_magic)