# HG changeset patch # User Sebastien Jodogne # Date 1587396861 -7200 # Node ID b55a7cb5ee0229f48b7d90e9a05dc15efe2206ec # Parent 281a32ecc5c192b8335d7f5ced815b2a0fbfa079 change url to get configuration.json diff -r 281a32ecc5c1 -r b55a7cb5ee02 GenerateConfigurationForTests.py --- a/GenerateConfigurationForTests.py Fri Apr 03 14:04:10 2020 +0200 +++ b/GenerateConfigurationForTests.py Mon Apr 20 17:34:21 2020 +0200 @@ -81,7 +81,8 @@ # Download the content of the default configuration file with open(args.target, 'w') as f: - url = 'https://bitbucket.org/sjodogne/orthanc/raw/default/Resources/Configuration.json' + url = 'https://hg.orthanc-server.com/orthanc/raw-file/default/Resources/Configuration.json' + #url = 'https://bitbucket.org/sjodogne/orthanc/raw/default/Resources/Configuration.json' http = urllib.urlopen(url) if http.getcode() != 200: raise Exception('Cannot download: %s' % url)