From 79ab1e6a4396dc78fb675a1ce0cf1508f9962ceb Mon Sep 17 00:00:00 2001 From: "Michael X. Grey" Date: Tue, 29 May 2018 12:42:25 +0800 Subject: [PATCH] Remove accidental paranthesis --- svgpathtools/parser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/svgpathtools/parser.py b/svgpathtools/parser.py index 07fb0e1..a4d710f 100644 --- a/svgpathtools/parser.py +++ b/svgpathtools/parser.py @@ -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