restore python3 compatibility

main
josch 9 years ago
parent 18a41fc8df
commit 33ee44e50d

@ -510,10 +510,10 @@ def valid_size(string):
try:
value[0] = float(value[1])
value[0] *= units[value[2]] # convert to points
except ValueError, e:
except ValueError:
# assign None if width or height not provided
value[0] = None
except KeyError, e:
except KeyError:
# if units unrecognized, raise error
# otherwise default to pt because units not provided
if value[2]:

Loading…
Cancel
Save