#! /usr/bin/python

# Check if Python's Tkinter module is available.
# Tkinter provides the Python interface to Tk.

import sys

try:
    import Tkinter
except:
    sys.exit(1)
