Commit 863f18a4 authored by Alexander Schrode's avatar Alexander Schrode Committed by oroulet

MinimumSamplingInterval parse as float

MinimumSamplingInterval is from Type Duration/Double so a float. Correct xmlparser.
parent e0ec3cf1
......@@ -209,7 +209,7 @@ class XMLParser:
elif key == "ArrayDimensions":
obj.dimensions = [int(i) for i in val.split(",")]
elif key == "MinimumSamplingInterval":
obj.minsample = int(val)
obj.minsample = float(val)
elif key == "AccessLevel":
obj.accesslevel = int(val)
elif key == "UserAccessLevel":
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment