ovs.ovsuuid: Get rid of ovs.ovsuuid.UUID class.
[openvswitch] / python / ovs / db / types.py
index dc19f85c86aca0552122fdf7e6ddf9c278be369b..95632116000bcfce70ead0ee18f762c2c0563acd 100644 (file)
@@ -56,7 +56,7 @@ IntegerType = AtomicType("integer", 0)
 RealType = AtomicType("real", 0.0)
 BooleanType = AtomicType("boolean", False)
 StringType = AtomicType("string", "")
-UuidType = AtomicType("uuid", ovs.ovsuuid.UUID.zero())
+UuidType = AtomicType("uuid", ovs.ovsuuid.zero())
 
 ATOMIC_TYPES = [VoidType, IntegerType, RealType, BooleanType, StringType,
                 UuidType]