Commit ede7fa7c88a74d7647447e7ce932897347fc3b32
1 parent
08d56740
Exists in
master
and in
68 other branches
ENC: Removed unnecessary print
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
invesalius/invesalius.py
... | ... | @@ -25,11 +25,11 @@ import sys |
25 | 25 | # ---------------------------------------------------------------------- |
26 | 26 | |
27 | 27 | path = os.path.join(os.path.expanduser('~'), ".invesalius", "presets") |
28 | -print path | |
29 | 28 | try: |
30 | 29 | os.makedirs(path) |
31 | 30 | except OSError: |
32 | - print "Warning: Directory (probably) exists" | |
31 | + #print "Warning: Directory (probably) exists" | |
32 | + pass | |
33 | 33 | # ---------------------------------------------------------------------- |
34 | 34 | |
35 | 35 | import wx | ... | ... |