[bugfix] error-prone check for method_id.id

This commit is contained in:
2017-07-17 11:58:32 +02:00
parent 7e0f4efbcc
commit 2633f4b9cf
3 changed files with 13 additions and 13 deletions

View File

@@ -1 +1 @@
7f0a-dirty
7e0f-dirty

View File

@@ -174,7 +174,7 @@ class Data(object):
picks = event.picks
#remove existing picks
for j, pick in reversed(list(enumerate(picks))):
if pick.method_id.id.split('/')[1] == picktype:
if picktype in str(pick.method_id.id):
picks.pop(j)
checkflag = 1
if checkflag:
@@ -182,7 +182,7 @@ class Data(object):
#append new picks
for pick in self.get_evt_data().picks:
if pick.method_id.id.split('/')[1] == picktype:
if picktype in str(pick.method_id.id):
picks.append(pick)
def exportEvent(self, fnout, fnext='.xml', fcheck='auto', upperErrors=None):