I had uncommented a debug print line finding the previous error. re-commented it.

This commit is contained in:
Kenny Ostrom 2014-08-30 13:54:43 -05:00
parent e067a86c4d
commit cf1d6a37f2

View File

@ -408,7 +408,7 @@ def _getdecoder(mode, decoder_name, args, extra=()):
try:
# get decoder
decoder = getattr(core, decoder_name + "_decoder")
print(decoder, mode, args + extra)
# print(decoder, mode, args + extra)
return decoder(mode, *args + extra)
except AttributeError:
raise IOError("decoder %s not available" % decoder_name)