diff options
author | Yves Fischer <yvesf-git@xapek.org> | 2013-01-20 23:53:52 +0100 |
---|---|---|
committer | Yves Fischer <yvesf-git@xapek.org> | 2013-01-20 23:53:52 +0100 |
commit | 1068ff9bf74cf411be701bb50fae92e8476b5da7 (patch) | |
tree | 5f54b2cb37bace46a0508544ec5116468c8f584b /datastore/store/channel.py | |
parent | a40afda64c61089d6c108eea9cb3eac8aeaaa072 (diff) | |
download | ebus-alt-1068ff9bf74cf411be701bb50fae92e8476b5da7.tar.gz ebus-alt-1068ff9bf74cf411be701bb50fae92e8476b5da7.zip |
datastore foo
Diffstat (limited to 'datastore/store/channel.py')
-rw-r--r-- | datastore/store/channel.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/datastore/store/channel.py b/datastore/store/channel.py index 2a5d5f4..1e083b5 100644 --- a/datastore/store/channel.py +++ b/datastore/store/channel.py @@ -7,7 +7,7 @@ class PrinterChannel(IChannel): def __init__(self,name): self.name = name def add(self,timestamp,data,controller): - print "{0}: {1},{2}".format(self.name, timestamp, data) + print "{0}: timestamp={1} value={2}".format(self.name, timestamp, data) class SimpleMemoryChannel(IChannel): def __init__(self): |