diff --git a/opcua/ua/uatypes.py b/opcua/ua/uatypes.py index 229e0fca..a1d33ea8 100644 --- a/opcua/ua/uatypes.py +++ b/opcua/ua/uatypes.py @@ -351,7 +351,7 @@ def _from_string(string): continue k, v = el.split("=", 1) k = k.strip() - v = v.strip() + v = v.lstrip() if k == "ns": namespace = int(v) elif k == "i":