restore python3 compatibility

This commit is contained in:
josch 2015-04-12 20:37:57 +02:00
parent 18a41fc8df
commit 33ee44e50d

View file

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