2
0
mirror of https://github.com/openvswitch/ovs synced 2025-08-31 06:15:47 +00:00

ovsuuid.py: Fix use of undefined symbol.

Found by pychecker.
This commit is contained in:
Ethan Jackson
2011-09-24 00:09:48 -07:00
parent e75a14703b
commit 4ad07e6063

View 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]