Fix an indexing error in a warning

This commit is contained in:
Caleb Deveraux 2010-10-07 23:11:54 -06:00 committed by David Vierra
parent 5e564531fb
commit ca4a3d4f13

View File

@ -610,7 +610,7 @@ class MCLevel(object):
info( "Detected Alpha world." )
return lev;
except Exception, ex:
warn( "Couldn't understand this file: {1} ".format(ex) )
warn( "Couldn't understand this file: {0} ".format(ex) )
raise;
rawdata = f.read()
f.close()