forked from josch/img2pdf
restore python3 compatibility
This commit is contained in:
parent
18a41fc8df
commit
33ee44e50d
1 changed files with 2 additions and 2 deletions
|
@ -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]:
|
||||||
|
|
Loading…
Reference in a new issue