ovsuuid.py: Fix use of undefined symbol.
[sliver-openvswitch.git] / python / ovs / ovsuuid.py
index 8da36c6..5739fcf 100644 (file)
@@ -51,7 +51,7 @@ def from_json(json, symtab=None):
             raise e
 
         if name not in symtab:
-            symtab[name] = uuid4()
+            symtab[name] = uuid.uuid4()
         return symtab[name]