diff Resources/Samples/Python/ArchiveAllPatients.py @ 2032:65b1ce7cb84f

Replaced "localhost" by "127.0.0.1", as it might impact performance on Windows
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 21 Jun 2016 09:26:56 +0200
parents b1291df2f780
children a3a65de1840f
line wrap: on
line diff
--- a/Resources/Samples/Python/ArchiveAllPatients.py	Mon Jun 20 16:03:26 2016 +0200
+++ b/Resources/Samples/Python/ArchiveAllPatients.py	Tue Jun 21 09:26:56 2016 +0200
@@ -28,7 +28,7 @@
 def PrintHelp():
     print('Download one ZIP archive for all the patients stored in Orthanc\n')
     print('Usage: %s <URL> <Target>\n' % sys.argv[0])
-    print('Example: %s http://localhost:8042/ /tmp/Archive.zip\n' % sys.argv[0])
+    print('Example: %s http://127.0.0.1:8042/ /tmp/Archive.zip\n' % sys.argv[0])
     exit(-1)
 
 if len(sys.argv) != 3: