Files @ 6f1eb6437c96
Branch filter:

Location: light9/bin/vidref

drewp@bigasterisk.com
vidref refactor, start to add more widgets
Ignore-this: b81bc966dffb486cb8b20f975a4b4b2a
#!/usr/bin/python
import gobject
gobject.threads_init()
import gtk
import sys, logging
sys.path.append(".")
from light9.vidref.main import Main


logging.basicConfig()
log = logging.getLogger()
log.setLevel(logging.DEBUG)
logging.getLogger("restkit.client").setLevel(logging.WARN)


start=Main()
gtk.main()