permit httpS to download autorun scripts

This commit is contained in:
Richard DUMAIS 2020-08-03 15:31:18 +02:00
parent e9d0356b8c
commit 97680ce9ed

View file

@ -120,7 +120,7 @@ def main():
sys.exit(0)
# ---- parse the autorun sources ----
if re.match('^http://', ar_source):
if re.match('^https?://', ar_source):
search_autoruns(ar_source, ar_autoruns, copyfilefct_http)
elif re.match('^/dev/', ar_source): # mount a partition/device
mnt1=('mount',ar_source,autorunmnt)