Files @ 1929e0e1053e
Branch filter:

Location: light9/bin/vidref

drewp@bigasterisk.com
showconfig logs about what n3 files it's reading
Ignore-this: 12ed745bfe471e7070ad93ec1e1c6dde
#!/usr/bin/python
import gobject
gobject.threads_init()
import gtk
import sys, logging
sys.path.append(".")
from light9.vidref.main import Main

 # then vidref file cleanup, livevideo ui elements, input picker. find replay dirs correctly. show multiple replays. trash. reorder/pin.
                

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


start=Main()
gtk.main()