mirror of
https://github.com/GNS3/gns3-server
synced 2024-11-13 20:08:55 +00:00
Fix indentation issue. Ref https://github.com/GNS3/gns3-gui/issues/2674
(cherry picked from commit c14d79a3d5
)
This commit is contained in:
parent
5f932fee9f
commit
3e21f96bf9
@ -112,14 +112,14 @@ def get_size(data, default_width=0, default_height=0):
|
||||
if not viewbox:
|
||||
raise ValueError("Invalid SVG file: missing viewBox attribute")
|
||||
_, _, viewbox_width, viewbox_height = re.split(r'[\s,]+', viewbox)
|
||||
if width_attr.endswith("%"):
|
||||
width = _svg_convert_size(viewbox_width, width_attr)
|
||||
else:
|
||||
width = _svg_convert_size(width_attr)
|
||||
if height_attr.endswith("%"):
|
||||
height = _svg_convert_size(viewbox_height, height_attr)
|
||||
else:
|
||||
height = _svg_convert_size(height_attr)
|
||||
if width_attr.endswith("%"):
|
||||
width = _svg_convert_size(viewbox_width, width_attr)
|
||||
else:
|
||||
width = _svg_convert_size(width_attr)
|
||||
if height_attr.endswith("%"):
|
||||
height = _svg_convert_size(viewbox_height, height_attr)
|
||||
else:
|
||||
height = _svg_convert_size(height_attr)
|
||||
except (AttributeError, IndexError) as e:
|
||||
raise ValueError("Invalid SVG file: {}".format(e))
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user