Changeset - b5efddd80dad
[Not reviewed]
default
0 4 0
Drew Perttula - 13 years ago 2012-06-14 06:38:30
drewp@bigasterisk.com
update more shbang lines
Ignore-this: fce511ba0c4892fad7eafd17dafe9a82
4 files changed with 4 insertions and 4 deletions:
0 comments (0 inline, 0 general)
bin/lightsim
Show inline comments
 
#!/usr/bin/python
 
#!bin/python
 

	
 
from __future__ import division
 
import run_local
 
import sys, logging
 

	
 
sys.path.append("lib")
 
import qt4reactor
 
qt4reactor.install()
 

	
 
from twisted.internet import reactor
 
from twisted.internet.task import LoopingCall
 
from twisted.web.xmlrpc import Proxy
bin/subcomposer
Show inline comments
 
#!/usr/bin/python
 
#!bin/python
 

	
 
from __future__ import division, nested_scopes
 
import sys,os,time,atexit
 
from optparse import OptionParser
 
import Tkinter as tk
 
try:
 
    from dispatch import dispatcher
 
except ImportError:
 
    import louie as dispatcher
 

	
 
import run_local
 
from light9.dmxchanedit import Levelbox
bin/vidref
Show inline comments
 
#!/usr/bin/python
 
#!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()
bin/webcontrol
Show inline comments
 
#!/usr/bin/python
 
#!bin/python
 
"""
 
web UI for various commands that we might want to run from remote
 
computers and phones
 

	
 
todo:
 
disable buttons that don't make sense
 
"""
 
import sys, xmlrpclib, traceback
 
from twisted.internet import reactor
 
from twisted.python import log
 
from twisted.python.util import sibpath
 
from twisted.internet.defer import inlineCallbacks, returnValue
0 comments (0 inline, 0 general)