X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;ds=sidebyside;f=gdcmPython%2Fdemo%2FPrintHeader.py;h=6edd80fe7f4d7a43ea55874be12ae09f3c6afcfb;hb=f8e5982fc2d53058d72b5c96e8f4f53faf9a37d7;hp=fa98de2d86a4a8108a69f2b027ad399ca0b9e66e;hpb=f978dcd25d35bb7dcd2e21f5ca192cc9aea4e8ec;p=gdcm.git diff --git a/gdcmPython/demo/PrintHeader.py b/gdcmPython/demo/PrintHeader.py index fa98de2d..6edd80fe 100644 --- a/gdcmPython/demo/PrintHeader.py +++ b/gdcmPython/demo/PrintHeader.py @@ -7,9 +7,9 @@ try: except IndexError: FileName = os.path.join(GDCM_DATA_PATH, "test.acr") -if not os.path.isfile(FileName): - print "Cannot open file ", FileName - sys.exit() +#if not os.path.isfile(FileName): +# print "Cannot open file ", FileName +# sys.exit() # On debugging purposes uncomment the next line #s = raw_input("Hit any key in this window to exit") @@ -17,8 +17,7 @@ if not os.path.isfile(FileName): ### Build the header element list toRead = gdcmHeader(FileName) if not toRead.IsReadable(): - print "The ", FileName, " file is not " - print " readable with gdcm. Sorry." + print "The ", FileName, " file is not readable with gdcm. Sorry." sys.exit() print "##############################################################"