#!/usr/bin/python2.3
#
# Copyright (c) 2002 Juri Pakaste
# You may use and distribute this software under the terms of the
# GNU General Public License, version 2 or later
#

import signal
import sys
import pygtk
pygtk.require("2.0")

sys.path.insert(0, "/usr/lib/straw")

import straw

signal.signal(signal.SIGINT, signal.SIG_DFL)
s = straw.Main()
s.mainloop()
