Mercurial > hg > orthanc-tests
changeset 460:281a599f5338
fix
author | Alain Mazy <am@osimis.io> |
---|---|
date | Wed, 30 Mar 2022 09:54:11 +0200 |
parents | 723d4535252e |
children | ee398adfeb8e 29aaa3df718f |
files | Plugins/WSI/Run.py |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/Plugins/WSI/Run.py Wed Mar 30 09:35:35 2022 +0200 +++ b/Plugins/WSI/Run.py Wed Mar 30 09:54:11 2022 +0200 @@ -109,7 +109,7 @@ def CallDicomizer(suffix): CallCommand([ args.dicomizer, - '--orthanc=%s' % args.server, + '--orthanc=http://%s:%s' % (args.server, args.rest), '--username=%s' % args.username, '--password=%s' % args.password ] + suffix ) @@ -117,7 +117,7 @@ def CallDicomToTiff(suffix): CallCommand([ args.to_tiff, - '--orthanc=%s' % args.server, + '--orthanc=http://%s:%s' % (args.server, args.rest), '--username=%s' % args.username, '--password=%s' % args.password ] + suffix)