Changeset - a296d842d0da
[Not reviewed]
default
0 2 0
Drew Perttula - 11 years ago 2014-06-15 07:17:48
drewp@bigasterisk.com
better cmdline option error
Ignore-this: a9be79c6c6fd69de5d5798f0cb628f24
2 files changed with 2 insertions and 2 deletions:
0 comments (0 inline, 0 general)
bin/rdfdb
Show inline comments
 
@@ -432,7 +432,7 @@ if __name__ == "__main__":
 
        (r'/(.*)', NoExts,
 
         {"path" : "light9/rdfdb/web",
 
          "default_filename" : "index.xhtml"}),
 

	
 
        ], debug=True, db=db))
 
    log.info("serving on %s" % port)
 
    prof.run(reactor.run, profile=False)
 
    prof.run(reactor.run, profile=None)
light9/effecteval/effectloop.py
Show inline comments
 
@@ -221,9 +221,9 @@ class LedLoop(EffectLoop):
 
def makeEffectLoop(graph, stats, outputWhere):
 
    if outputWhere == 'dmx':
 
        return EffectLoop(graph, stats)
 
    elif outputWhere == 'leds':
 
        return LedLoop(graph, stats)
 
    else:
 
        raise NotImplementedError
 
        raise NotImplementedError("unknown output system %r" % outputWhere)
 

	
 
        
0 comments (0 inline, 0 general)