From 1068ff9bf74cf411be701bb50fae92e8476b5da7 Mon Sep 17 00:00:00 2001 From: Yves Fischer Date: Sun, 20 Jan 2013 23:53:52 +0100 Subject: datastore foo --- datastore/store/channel.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'datastore/store/channel.py') 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): -- cgit v1.2.1