Commit d6c667656c39d42542159e8487f00d442a6a90f6
1 parent
fbcf5cfb
Exists in
master
and in
5 other branches
ENH: Change "import Image" to "from PIL import Image" to works in the win xp 32bits
Showing
1 changed file
with
2 additions
and
1 deletions
Show diff stats
invesalius/gui/data_notebook.py
@@ -20,7 +20,8 @@ | @@ -20,7 +20,8 @@ | ||
20 | #-------------------------------------------------------------------------- | 20 | #-------------------------------------------------------------------------- |
21 | import sys | 21 | import sys |
22 | 22 | ||
23 | -import Image | 23 | +#import Image |
24 | +from PIL import Image | ||
24 | 25 | ||
25 | import wx | 26 | import wx |
26 | import wx.grid | 27 | import wx.grid |