Merge branch 'develop' of ariadne.geophysik.rub.de:/data/git/pylot into develop

This commit is contained in:
Ludger Küperkoch 2017-08-17 12:32:54 +02:00
commit 76144252ea

View File

@ -69,7 +69,7 @@ class Event(ObsPyEvent):
def clearObsPyPicks(self, picktype):
for index, pick in reversed(list(enumerate(self.picks))):
if pick.method_id == picktype:
if picktype in str(pick.method_id):
self.picks.pop(index)
def addPicks(self, picks):