Mercurial > code > home > repos > light9
changeset 1178:a296d842d0da
better cmdline option error
Ignore-this: a9be79c6c6fd69de5d5798f0cb628f24
author | Drew Perttula <drewp@bigasterisk.com> |
---|---|
date | Sun, 15 Jun 2014 07:17:48 +0000 |
parents | eccb02a704cf |
children | 65405b3311f6 |
files | bin/rdfdb light9/effecteval/effectloop.py |
diffstat | 2 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/bin/rdfdb Sun Jun 15 07:07:09 2014 +0000 +++ b/bin/rdfdb Sun Jun 15 07:17:48 2014 +0000 @@ -435,4 +435,4 @@ ], debug=True, db=db)) log.info("serving on %s" % port) - prof.run(reactor.run, profile=False) + prof.run(reactor.run, profile=None)
--- a/light9/effecteval/effectloop.py Sun Jun 15 07:07:09 2014 +0000 +++ b/light9/effecteval/effectloop.py Sun Jun 15 07:17:48 2014 +0000 @@ -224,6 +224,6 @@ elif outputWhere == 'leds': return LedLoop(graph, stats) else: - raise NotImplementedError + raise NotImplementedError("unknown output system %r" % outputWhere)