~ubuntu-branches/ubuntu/wily/python-imaging/wily

« back to all changes in this revision

Viewing changes to Scripts/thresholder.py

  • Committer: Package Import Robot
  • Author(s): Matthias Klose
  • Date: 2013-01-31 20:49:20 UTC
  • mfrom: (1.1.4)
  • mto: This revision was merged to the branch mainline in revision 29.
  • Revision ID: package-import@ubuntu.com-20130131204920-7tnuhqhlsqdza4c2
Rewrite build dependencies to allow cross builds.

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
# as a dynamically updated overlay
7
7
#
8
8
 
9
 
from Tkinter import *
 
9
try:
 
10
    from tkinter import *
 
11
except ImportError:
 
12
    from Tkinter import *
 
13
 
10
14
from PIL import Image, ImageTk
11
15
import sys
12
16