mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-02-18 01:41:13 +00:00
Fix a slew of whitespace issues.
This commit is contained in:
parent
a3c8209bdf
commit
971e689d3d
4 changed files with 54 additions and 53 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue