diff --git a/docs/examples/python/mockdatasoruce.py b/docs/examples/python/mockdatasoruce.py index c77dc36801afb633a16c4b83b1c76b34e77a36b4..7524528c008fb80b736f1506c4951b25ff5c0ab4 100644 --- a/docs/examples/python/mockdatasoruce.py +++ b/docs/examples/python/mockdatasoruce.py @@ -39,7 +39,7 @@ class MockDataSource: # just add timestamp to each row # (tableId, "tableName,ts,current,voltage,phase,location,groupId") - return map(lambda t: (t[0], t[1] + str(ts) + "," + t[2]), self.data) + return map(lambda t: (t[0], t[1] + ',' + str(ts) + "," + t[2]), self.data) if __name__ == '__main__':