ovs.ovsuuid: Get rid of ovs.ovsuuid.UUID class.
[sliver-openvswitch.git] / python / ovs / db / types.py
index dc19f85..9563211 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]