Skip to content
Snippets Groups Projects
Commit a2925ce6 authored by Patrick Godwin's avatar Patrick Godwin
Browse files

gstlal_play: missing parenthesis in conditional was causing issue with sanity check in options

parent a04edb95
No related branches found
No related tags found
No related merge requests found
......@@ -167,7 +167,7 @@ def parse_command_line():
if options.low_pass_filter <= options.high_pass_filter:
raise ValueError("--low-pass-filter must be > --high-pass-filter")
if options.reference_psd or options.veto_segments_file and not options.whiten:
if (options.reference_psd or options.veto_segments_file) and not options.whiten:
raise ValueError("--reference-psd and --veto-segments-file requires --whiten")
if len(options.channel_name) > 1:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment