Files
@ f7ae0faa0a44
Branch filter:
Location: light9/bin/vidref - annotation
f7ae0faa0a44
766 B
text/plain
makefile and nosetests path fix. new contextsForStatement
Ignore-this: 424b0fa004ff5366b8035af42d9d9d0d
Ignore-this: 424b0fa004ff5366b8035af42d9d9d0d
b5efddd80dad d3f8333bc142 d3f8333bc142 e20419d637d5 cfd5d5be1b50 9f36a105adb3 e20419d637d5 e20419d637d5 cfd5d5be1b50 cfd5d5be1b50 cfd5d5be1b50 cfd5d5be1b50 cfd5d5be1b50 cfd5d5be1b50 cfd5d5be1b50 cfd5d5be1b50 cfd5d5be1b50 e20419d637d5 6f1eb6437c96 6f1eb6437c96 a30550d5827f a30550d5827f a30550d5827f 6f1eb6437c96 6f1eb6437c96 6f1eb6437c96 e20419d637d5 e20419d637d5 e20419d637d5 | #!bin/python
import gobject
gobject.threads_init()
import gtk
import sys, logging, optparse
sys.path.append(".")
from light9.vidref.main import Main
# find replay dirs correctly. show multiple
# replays. trash. reorder/pin. dump takes that are too short; they're
# just from seeking
parser = optparse.OptionParser()
parser.add_option("-v", "--verbose", action="store_true",
help="logging.DEBUG")
(options, args) = parser.parse_args()
logging.basicConfig()
log = logging.getLogger()
log.setLevel(logging.DEBUG)
# limit the stdout one, but leave debug messages for the gtk logger
log.handlers[0].setLevel(logging.DEBUG if options.verbose else logging.WARN)
logging.getLogger("restkit.client").setLevel(logging.WARN)
start=Main()
gtk.main()
|