X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=gdcmPython%2Fdemo%2FPrintDict.py.in;h=3140653ed68944a49a7d46ef2f7e3d938e7d5e7e;hb=e24cb386c7f7f528be31335de6942dfbbf21334a;hp=aca8f437b17e5809e259b35a854bcb2d1d51c11b;hpb=f51f3cf0f4013935c1d93a828779e5ca285a31fc;p=gdcm.git diff --git a/gdcmPython/demo/PrintDict.py.in b/gdcmPython/demo/PrintDict.py.in index aca8f437..3140653e 100644 --- a/gdcmPython/demo/PrintDict.py.in +++ b/gdcmPython/demo/PrintDict.py.in @@ -34,7 +34,6 @@ print "dict content :" entry=pubDict.GetFirstEntry() while(entry): print "%4x|%4x [%s] - M%s : %s (%s)" %\ - (entry.GetGroup(),entry.GetElement(),entry.GetVR(),entry.GetVM(), - entry.GetName(),entry.GetKey()) + (entry.GetGroup(),entry.GetElement(),entry.GetVR().str(),entry.GetVM(), entry.GetName(),entry.GetKey().str()) entry=pubDict.GetNextEntry()