-
Notifications
You must be signed in to change notification settings - Fork 269
Closed
Description
Currently, EcatImage is not included in all_image_classes in imageclasses.py. Adding it and calling load() on an ECAT file gives an error in ecat.py line 562:
i = iter(affs)
first = i.next()
Changing the second line to the Python 3 syntax first = next(i) seems to address this issue, but there may be other Python 2 code in the EcatImage class.