From 4ad07e6063e68eeb1768fc751ddd4833bdb8f3c1 Mon Sep 17 00:00:00 2001 From: Ethan Jackson Date: Sat, 24 Sep 2011 00:09:48 -0700 Subject: [PATCH] ovsuuid.py: Fix use of undefined symbol. Found by pychecker. --- python/ovs/ovsuuid.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/ovs/ovsuuid.py b/python/ovs/ovsuuid.py index 8da36c6c3..5739fcfaf 100644 --- a/python/ovs/ovsuuid.py +++ b/python/ovs/ovsuuid.py @@ -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] -- 2.43.0