diff options
author | nilshah98 | 2019-06-07 18:06:05 +0530 |
---|---|---|
committer | nilshah98 | 2019-06-13 12:15:50 +0530 |
commit | 1970530f0818577ef6fb1b2018d76829195c87e9 (patch) | |
tree | 667f63f752b4f85730a9ea3b8bcc368ccaf82d73 /src/projManagement | |
parent | d620109c1255aa4af35aa8f86f0e147b709d9b9c (diff) | |
download | eSim-1970530f0818577ef6fb1b2018d76829195c87e9.tar.gz eSim-1970530f0818577ef6fb1b2018d76829195c87e9.tar.bz2 eSim-1970530f0818577ef6fb1b2018d76829195c87e9.zip |
python calls updated to python3 calls
Diffstat (limited to 'src/projManagement')
-rw-r--r-- | src/projManagement/Kicad.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/projManagement/Kicad.py b/src/projManagement/Kicad.py index d8c413c3..8b20112e 100644 --- a/src/projManagement/Kicad.py +++ b/src/projManagement/Kicad.py @@ -180,7 +180,7 @@ class Kicad: # Creating a command to run """ - self.cmd = ("python ../kicadtoNgspice/KicadtoNgspice.py " + self.cmd = ("python3 ../kicadtoNgspice/KicadtoNgspice.py " + "self.project+".cir ") self.obj_workThread = Worker.WorkerThread(self.cmd) self.obj_workThread.start() |