Commit f53fde7c6ddb071b7d4e1f514c4b193b3b31494d
1 parent
7d50ba78
Exists in
master
and in
54 other branches
FIX: Fixed problem with import of the ca_smoothing in win64
Showing
1 changed file
with
3 additions
and
2 deletions
Show diff stats
invesalius/data/surface.py
... | ... | @@ -36,10 +36,11 @@ import session as ses |
36 | 36 | import surface_process |
37 | 37 | import utils as utl |
38 | 38 | import vtk_utils as vu |
39 | + | |
39 | 40 | try: |
41 | + import ca_smoothing | |
42 | +except ImportError: | |
40 | 43 | import data.ca_smoothing as ca_smoothing |
41 | -except: | |
42 | - pass | |
43 | 44 | |
44 | 45 | class Surface(): |
45 | 46 | """ | ... | ... |