Skip to content

Commit

Permalink
Fix importer script when running in local environment
Browse files Browse the repository at this point in the history
  • Loading branch information
fenrisl authored and hezanathos committed Aug 27, 2020
1 parent eaf9e9e commit 2ebfaba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/importer/download_importer_scripts.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def download_scripts(parsed_args, scripts, client):

def download_attachment(path, url):
"""Download attachment if the script has one"""
attachment = requests.get(url, allow_redirects=True)
attachment = requests.get(url, allow_redirects=True, verify=False)
location = os.path.join(os.path.dirname(
__file__) + '/' + "/".join(path[:-1]))
name = url.split("/")[-1]
Expand Down

0 comments on commit 2ebfaba

Please sign in to comment.