Commit a524aa3ab9b219463cef30ae88f5e327d14fb394

Authored by Paulo Henrique Junqueira Amorim
1 parent afdd052b

FIX: Removed creation text file ("c:\\arquivo.txt"), It was just for testing, wa…

…s added accidentally.
Showing 1 changed file with 0 additions and 4 deletions   Show diff stats
invesalius/reader/dicom.py
@@ -191,10 +191,6 @@ class Parser(): @@ -191,10 +191,6 @@ class Parser():
191 if (sys.platform == 'win32'): 191 if (sys.platform == 'win32'):
192 filename = filename.encode('latin-1') 192 filename = filename.encode('latin-1')
193 193
194 - var_file = open("c:\\arquivo.txt","w")  
195 - var_file.write(filename)  
196 - var_file.close()  
197 -  
198 if path.isfile(filename): 194 if path.isfile(filename):
199 # Several information can be acquired from DICOM using 195 # Several information can be acquired from DICOM using
200 # vtkgdcm.vtkGDCMImageReader.GetMedicalImageProperties() 196 # vtkgdcm.vtkGDCMImageReader.GetMedicalImageProperties()