Files
@ ad5043f70fda
Branch filter:
Location: light9/bin/vidref - annotation
ad5043f70fda
663 B
text/plain
bin/curvecalc (with no song choice) defaults to whatever-ascoltami-is-currently-on
Ignore-this: 22a936edc1548675f97fcfc785573457
Ignore-this: 22a936edc1548675f97fcfc785573457
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()
|