mirror of
https://abf.rosa.ru/djam/abf-console-client-src.git
synced 2025-02-23 18:02:50 +00:00
Fix typo in tabulation
Fixes: ea9a02c9ae
("Allow https in filestore url")
Reported by Alzim
This commit is contained in:
parent
431ecec198
commit
94f0cfea37
1 changed files with 1 additions and 1 deletions
|
@ -51,7 +51,7 @@ class AbfJson(object):
|
|||
self.abf_url = re.compile('/+$').sub('', abf_url)
|
||||
self.file_store_url = re.compile('/+$').sub('', file_store_url)
|
||||
|
||||
if not (self.file_store_url.startswith('http://') or self.file_store_url.startswith('https://')):
|
||||
if not (self.file_store_url.startswith('http://') or self.file_store_url.startswith('https://')):
|
||||
log.error(_('File-store URL has to start with "http(s)://"'))
|
||||
exit(1)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue