[fixes #238] missing parenthesis in if statement

This commit is contained in:
Marcel Paffrath 2017-08-21 10:28:47 +02:00
parent 8fb6a4ea19
commit a9f05d3572

View File

@ -865,8 +865,8 @@ def merge_picks(event, picks):
if p.waveform_id.station_code == station\
and p.waveform_id.network_code == network\
and p.phase_hint == phase\
and str(p.method_id) in str(method)\
or str(method) in str(p.method_id):
and (str(p.method_id) in str(method)\
or str(method) in str(p.method_id)):
p.time, p.time_errors, p.waveform_id.network_code, p.method_id = time, err, network, method
del time, err, phase, station, network, method
return event