Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tsdatacruncher/utils/tsdata.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ def create_client(datasource):
protocol, server_str = datasource.split('://', 1)

# Handle FDSN protocols
if protocol in ['fdsn', 'http', 'fdsnws']:
return FDSNClient(server_str)
if protocol in ['fdsn', 'http', 'https', 'fdsnws']:
return FDSNClient(datasource)

# Handle waveserver protocols
elif protocol in ['wws', 'waveserver']:
Expand Down