Fix a slew of whitespace issues.

This commit is contained in:
Bill Currie 2012-08-07 13:25:44 +09:00
parent a3c8209bdf
commit 971e689d3d
4 changed files with 54 additions and 53 deletions

View file

@ -225,7 +225,8 @@ def process_skin(mdl, skin, ingroup=False):
if (mdl.skinwidth != image.size[0]
or mdl.skinheight != image.size[1]):
raise ValueError("%s: different skin size (%d %d) (%d %d)"
% (name, mdl.skinwidth, mdl.skinheight, int(image.size[0]), int(image.size[1])))
% (name, mdl.skinwidth, mdl.skinheight,
int(image.size[0]), int(image.size[1])))
else:
mdl.skinwidth, mdl.skinheight = image.size
sk = convert_image(image)