Skip to content

Commit

Permalink
Merge pull request #23 from IGS/https-fix
Browse files Browse the repository at this point in the history
fixed issue where https urls would generate an error
  • Loading branch information
pgandt authored Mar 23, 2021
2 parents 34e45ec + aa610d2 commit 1c77de0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/manifest_processor.py
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ def download_manifest(self, manifest, destination, priorities):
res = self._get_fasp_obj(url, tmp_file_name)
elif endpoint == "GS":
res = self._get_gcp_obj(url, tmp_file_name)
elif endpoint == "HTTP":
elif endpoint == "HTTP" or endpoint == "HTTPS":
res = self._get_http_obj(url, tmp_file_name)
elif endpoint == "FTP":
res = self._get_ftp_obj(url, tmp_file_name)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def read(fname):
name='portal-client',
description='Download client tool for IGS Portal servers.',
long_description=read('DESC'),
version='1.4.4',
version='1.4.5',
py_modules=['portal_client'],
author='Victor F',
author_email='[email protected]',
Expand Down

0 comments on commit 1c77de0

Please sign in to comment.