File: 0001-svgcode.py-use-upstream-svgelements-library.patch

package info (click to toggle)
bcnc 0.9.14.318%2Bds-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 6,072 kB
  • sloc: python: 39,148; sh: 45; makefile: 44
file content (22 lines) | stat: -rw-r--r-- 617 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
From: Agathe Porte <debian@microjoe.org>
Date: Thu, 25 Feb 2021 11:50:27 +0100
Subject: svgcode.py: use upstream svgelements library

Forwarded: https://github.com/vlachoudis/bCNC/pull/1556
---
 bCNC/lib/svgcode.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bCNC/lib/svgcode.py b/bCNC/lib/svgcode.py
index 0762589..cb121f8 100644
--- a/bCNC/lib/svgcode.py
+++ b/bCNC/lib/svgcode.py
@@ -11,7 +11,7 @@
 #	print(path['path'])
 
 import numpy
-from svg_elements import SVG, Path, Move, Shape, Line, Close, Arc
+from svgelements import SVG, Path, Move, Shape, Line, Close, Arc
 
 
 class SVGcode: