Commit
31c791849101b3a2c8b8284d0635b7d7cdf2e0ea
Exists in
master
and in
67 other branches
3d_inter_style, MIPs, beta3, beta4, brush_pix, canvas_reeng, canvas_text, casmoothing_cython, clean, command-line, cython_threshold, debian_cython, editor_improvements, encoding, ff_mask, ff_mask_improv, ffill_gui, ffill_segmentation, fill_holes_auto, fixes_pre_beta5, floodfill, get_pixel, import_mesh, interactor_style, inv3.0.1, mactoolbar, mactoolbar_bkp, manual_v3.1, mask_boolean_op, mask_boolean_op_bkp, mask_copy, mask_greatest_component, measure, measure_canvas, measure_improvements, measure_placement_test, measure_spacing, orientation, phoenix, region_growing_confidence, remote, remove_local_wxpython, rmatsuda-fix_ref_MTC, rmatsuda-fix_remove_marker_bug, rmatsuda-trigger_bug_fix, rotvol, segmentation_menu, select_part, smoothing_bin, smoothing_bin_pll, surface_area, threshold_history, user_guide_en, usp-navegador, vti, vtk6, watershed, watershed_improvements, watershed_improvements_bkp, watershed_merge, workdir, wwwlgui, wx2.9_mac, wxgtk3, wxgtk3_b5, wxgtk3_bkp, xmartlabs-command-line
FIX: Fixed problem open melanix case
|
| @@ -720,7 +720,11 @@ class Parser(): |
| @@ -720,7 +720,11 @@ class Parser(): |
|
720
| |
720
| |
|
721
| Critical DICOM tag (0x0008, 0x0008). Cannot be editted. |
721
| Critical DICOM tag (0x0008, 0x0008). Cannot be editted. |
|
722
| """ |
722
| """ |
|
723
| - data = self.data_image['0008']['0008'] |
723
| + try: |
|
| |
724
| + data = self.data_image['0008']['0008'] |
|
| |
725
| + except(IndexError): |
|
| |
726
| + return [] |
|
| |
727
| + |
|
724
| if (data): |
728
| if (data): |
|
725
| try: |
729
| try: |
|
726
| return data.split('\\') |
730
| return data.split('\\') |