Skip to content
Snippets Groups Projects
Commit 83d18d84 authored by jkerdreu's avatar jkerdreu
Browse files

Fix a wrong type bug

git-svn-id: https://redmine.imt-atlantique.fr/svn/xaal/code/Python/trunk@2105 b32b6428-25c9-4566-ad07-03861ab6144f
parent 06b33d2e
Branches
No related tags found
No related merge requests found
......@@ -55,7 +55,7 @@ class WARP10Logger:
name = '%s.%s' % (base,k)
tags = '{devid=%s}' % msg.source
value = msg.body[k]
if value != None:
if value != None and type(value)!=list:
buf = buf +"%s// %s%s %s\n" % (now,name,tags,value)
DATA_BUF = DATA_BUF + buf
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment