Remove accidental paranthesis

pull/58/head
Michael X. Grey 2018-05-29 12:42:25 +08:00
parent a3649bc51e
commit 79ab1e6a43
1 changed files with 1 additions and 1 deletions

View File

@ -275,7 +275,7 @@ def _parse_transform_substr(transform_substr):
transform[1, 0] = np.tan(values[0] * np.pi / 180.0)
else:
# Return an identity matrix if the type of transform is unknown, and warn the user
warnings.warn('Unknown SVG transform type: {0})'.format(type_str))
warnings.warn('Unknown SVG transform type: {0}'.format(type_str))
return transform