summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlivier Dufour2013-04-29 15:36:18 +0200
committerOlivier Dufour2013-04-29 16:54:38 +0200
commitb9457927e6b68a1058523f2b7a41c76e48b97f21 (patch)
tree0607ba91a59b49638ade0c69839cbd093fdac392
parent913be0bada30f04084e99f4652054521bd399d2e (diff)
validation/test/av_home: remove trailing '\0' in version
-rwxr-xr-xvalidation/test/av_home/av_mme.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/validation/test/av_home/av_mme.py b/validation/test/av_home/av_mme.py
index ad80ef42ab..f7051abe3a 100755
--- a/validation/test/av_home/av_mme.py
+++ b/validation/test/av_home/av_mme.py
@@ -77,7 +77,7 @@ Firmware version of {mac}:
PLC Firmware: {driver}
"""
soft = soft.format (mac = ans[Ether].src,
- linux = ans[VS_GET_VERSION_CNF].applicative_version,
+ linux = ans[VS_GET_VERSION_CNF].applicative_version.replace ('\0', ''),
driver = ans[VS_GET_VERSION_CNF].av_stack_version.replace ('\0', ''))
print >>f, soft,
f.close ()