Files
@ c113c759559b
Branch filter:
Location: light9/bin/vidref - annotation
c113c759559b
663 B
text/plain
more menubar. not many working actions yet
Ignore-this: 6471725b1f8405bd5682522c36389d01
Ignore-this: 6471725b1f8405bd5682522c36389d01
e20419d637d5 d3f8333bc142 d3f8333bc142 e20419d637d5 cfd5d5be1b50 9f36a105adb3 e20419d637d5 e20419d637d5 cfd5d5be1b50 cfd5d5be1b50 cfd5d5be1b50 cfd5d5be1b50 cfd5d5be1b50 cfd5d5be1b50 cfd5d5be1b50 cfd5d5be1b50 cfd5d5be1b50 e20419d637d5 6f1eb6437c96 6f1eb6437c96 cfd5d5be1b50 6f1eb6437c96 6f1eb6437c96 6f1eb6437c96 e20419d637d5 e20419d637d5 e20419d637d5 | #!/usr/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 if options.verbose else logging.INFO)
logging.getLogger("restkit.client").setLevel(logging.WARN)
start=Main()
gtk.main()
|