Skip to content

Commit fb80c3a

Browse files
authored
Merge pull request #20 from kasbah/open-kicad-in-bg
Change commands to open kicad in the background
2 parents fc9e9bd + 9bbace3 commit fb80c3a

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

inkscape/svg2shenzhen/export.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -510,8 +510,7 @@ def openKicad(self, kicad_file_path):
510510
else:
511511
command = "start %s" % (kicad_file_path)
512512

513-
p = subprocess.Popen(command.encode("utf-8"), shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
514-
p.wait()
513+
return subprocess.Popen(command.encode("utf-8"), shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
515514

516515

517516

0 commit comments

Comments
 (0)