From: Ethan Jackson Date: Sat, 24 Sep 2011 07:09:48 +0000 (-0700) Subject: ovsuuid.py: Fix use of undefined symbol. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4ad07e6063e68eeb1768fc751ddd4833bdb8f3c1;p=openvswitch ovsuuid.py: Fix use of undefined symbol. Found by pychecker. --- diff --git a/python/ovs/ovsuuid.py b/python/ovs/ovsuuid.py index 8da36c6c..5739fcfa 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]