mirror of
https://github.com/echemdata/galvani.git
synced 2025-12-14 17:15:36 +00:00
Use break instead of StopIteration - fixes #17
This commit is contained in:
@@ -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)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user