X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=gdcmPython%2Fdemo%2FPrintDicomDir.py.in;h=a76944997823b599f47152b4df0362a7d975b601;hb=af52d821b66539803b39c1ca733ae8a09aa85379;hp=a6aa6d74d096447fb1715702186dbd29afbebdfe;hpb=404c8b83212e675c77458f9cf2c3cfb851c7eee2;p=gdcm.git diff --git a/gdcmPython/demo/PrintDicomDir.py.in b/gdcmPython/demo/PrintDicomDir.py.in index a6aa6d74..a7694499 100644 --- a/gdcmPython/demo/PrintDicomDir.py.in +++ b/gdcmPython/demo/PrintDicomDir.py.in @@ -26,7 +26,9 @@ except IndexError: printLevel = 1 ### Build the DicomDir element list -dicomdir = gdcm.DicomDir(fileName) +dicomdir = gdcm.DicomDir() +dicomdir.SetFileName(fileName) +dicomdir.Load() if not dicomdir.IsReadable(): PrintUse() raise RuntimeError,"The '%s' DicomDir is not readable with gdcm." % fileName