From 1202c335d905308a19f3275557eca69f8991c857 Mon Sep 17 00:00:00 2001 From: blitzmann Date: Mon, 10 Jul 2017 00:28:22 -0400 Subject: [PATCH] Fix implant set clipboard import (#1237) --- gui/setEditor.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/gui/setEditor.py b/gui/setEditor.py index d199c1cc2..d7239254c 100644 --- a/gui/setEditor.py +++ b/gui/setEditor.py @@ -197,7 +197,6 @@ class ImplantSetEditorDlg(wx.Dialog): try: sIS.importSets(text) self.stNotice.SetLabel("Patterns successfully imported from clipboard") - self.showInput(False) except ImportError as e: pyfalog.error(e) self.stNotice.SetLabel(str(e)) @@ -205,7 +204,7 @@ class ImplantSetEditorDlg(wx.Dialog): pyfalog.error(e) self.stNotice.SetLabel("Could not import from clipboard: unknown errors") finally: - self.updateChoices() + self.entityEditor.refreshEntityList() else: self.stNotice.SetLabel("Could not import from clipboard")