From e8df5198ea50ea0da62b8a671faeb72fffa14127 Mon Sep 17 00:00:00 2001 From: Marcel Date: Tue, 12 Mar 2019 15:18:02 +0100 Subject: [PATCH] [bugfix] missing split for * in dirty events --- pylot/core/util/widgets.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pylot/core/util/widgets.py b/pylot/core/util/widgets.py index 1d0b1844..246bdacc 100644 --- a/pylot/core/util/widgets.py +++ b/pylot/core/util/widgets.py @@ -3498,7 +3498,7 @@ class TuneAutopicker(QWidget): return self.parent().project.getEventFromPath(path) def get_current_event_name(self): - return self.eventBox.currentText().split('/')[-1] + return self.eventBox.currentText().split('/')[-1].split('*')[0] def get_current_event_fp(self): return self.eventBox.currentText().split('*')[0]