# HG changeset patch # User drewp@bigasterisk.com # Date 1528507249 0 # Node ID 3f606666105bd576fdec403ec5dce01d1d79f77c # Parent 0da5fcfe4ea5463446ce225b75394fdcad0dd17b fix dummy mode on collector Ignore-this: 4bdc03eec9832f0879f4e92b01b56ecf diff -r 0da5fcfe4ea5 -r 3f606666105b light9/collector/output.py --- a/light9/collector/output.py Sat Jun 09 01:19:23 2018 +0000 +++ b/light9/collector/output.py Sat Jun 09 01:20:49 2018 +0000 @@ -54,9 +54,9 @@ raise NotImplementedError class DummyOutput(Output): - def __init__(self, uri, *args): + def __init__(self, uri, numChannels=1, **kw): self.uri = uri - self.numChannels = args[-1] + self.numChannels = numChannels def update(self, values): pass