summaryrefslogtreecommitdiff
path: root/plugin/mesh_plugin.py
diff options
context:
space:
mode:
authorjaseg <git-bigdata-wsl-arch@jaseg.de>2020-08-14 13:31:09 +0200
committerjaseg <git-bigdata-wsl-arch@jaseg.de>2020-08-14 13:31:09 +0200
commita7398d846a5c696734163205193734606e7b84c8 (patch)
tree64b5a854dc0c943ca7a510b62041029397b7ace1 /plugin/mesh_plugin.py
parent932b6dc8ead8707fc7b4556aff4b501a4475f61c (diff)
downloadkimesh-a7398d846a5c696734163205193734606e7b84c8.tar.gz
kimesh-a7398d846a5c696734163205193734606e7b84c8.tar.bz2
kimesh-a7398d846a5c696734163205193734606e7b84c8.zip
WIP
Diffstat (limited to 'plugin/mesh_plugin.py')
-rw-r--r--plugin/mesh_plugin.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugin/mesh_plugin.py b/plugin/mesh_plugin.py
index 9d4ab56..1951875 100644
--- a/plugin/mesh_plugin.py
+++ b/plugin/mesh_plugin.py
@@ -15,7 +15,7 @@ def check_requirements(*packages):
missing.append(pkg)
if missing:
- wx.MessageDialog(None, "Error: Missing python dependencies:\n\n{}.".format('\n'.join(missing)),
+ wx.MessageDialog(None, "Error: Missing python dependencies:\n\n{}".format('\n'.join(missing)),
"Missing Dependencies").ShowModal()
return False
@@ -31,7 +31,7 @@ class MeshPlugin(pcbnew.ActionPlugin):
self.show_toolbar_button = True
def Run(self):
- if not check_requirements('pyclipper'):
+ if not check_requirements('shapely'):
return
from .mesh_dialog import show_dialog