bug fixed for sch as NoneType

LT1AB
Zhang Yunjun 2019-03-11 19:10:06 -04:00
parent 5e1ca080eb
commit 4a0c4e4d79
1 changed files with 1 additions and 1 deletions

View File

@ -106,7 +106,7 @@ if __name__ == '__main__':
elif sch == 'BAND': elif sch == 'BAND':
img.scheme = 'BSQ' img.scheme = 'BSQ'
else: else:
print('Unrecognized interleaving scheme, ' + sch) print('Unrecognized interleaving scheme, {}'.format(sch))
print('Assuming default, BIP') print('Assuming default, BIP')
img.scheme = 'BIP' img.scheme = 'BIP'