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

multichannel_datasource.py: fixed bug where channel list path is not parsed correctly in some cases

parent 25790edb
No related branches found
No related tags found
No related merge requests found
......@@ -212,7 +212,7 @@ class DataSourceInfo(object):
assert fidelity in self.known_fidelity, '--fidelity-exclude=%s is not understood. Must be one of %s'%(fidelity, ", ".join(self.known_fidelity))
# dictionary of the requested channels, e.g., {"H1": {"LDAS-STRAIN": 16384}, "L1": {"LDAS-STRAIN": 16384}}
name, extension = options.channel_list.split('.')
name, extension = options.channel_list.rsplit('.', 1)
if extension == 'ini':
self.channel_dict = channel_dict_from_channel_ini(options)
else:
......
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