Commit a524aa3ab9b219463cef30ae88f5e327d14fb394
1 parent
afdd052b
Exists in
master
and in
68 other branches
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 | 191 | if (sys.platform == 'win32'): |
| 192 | 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 | 194 | if path.isfile(filename): |
| 199 | 195 | # Several information can be acquired from DICOM using |
| 200 | 196 | # vtkgdcm.vtkGDCMImageReader.GetMedicalImageProperties() | ... | ... |