Merge pull request #21 from yunjunz/gdal2isce_xml

gdal2isce_xml: bug fixed for print() when sch is NoneType
LT1AB
Heresh Fattahi 2019-03-13 08:18:47 -07:00 committed by GitHub
commit 93c628d6af
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

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