We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25ee4ad commit 77f85b5Copy full SHA for 77f85b5
services/datalad/datalad_service/common/annex.py
@@ -132,7 +132,9 @@ def compute_rmet(key, legacy=False):
132
133
134
def parse_remote_line(remoteLine):
135
- remoteConfig = dict(item.split('=') for item in remoteLine[37:].split(' '))
+ remoteConfig = dict(
136
+ item.split('=', maxsplit=1) for item in remoteLine[37:].split(' ')
137
+ )
138
if remoteConfig['type'] == 'S3' and remoteConfig['bucket'] in S3_BUCKETS_WHITELIST:
139
remoteUuid = remoteLine[0:36]
140
remoteUrl = remoteConfig['publicurl'] if 'publicurl' in remoteConfig else None
0 commit comments