提交 3c487a42 编写于 作者: D Daniel Veillard

Fix connection lookup in python storage instances

* python/generator.py: patch from Cole Robinson trying to fix
  problem of connection lookup when creating storage instances
Daniel
上级 52efa886
Tue Aug 12 10:09:23 CEST 2008 Daniel Veillard <veillard@redhat.com>
* python/generator.py: patch from Cole Robinson trying to fix
problem of connection lookup when creating storage instances
Tue Aug 12 10:04:33 CEST 2008 Daniel Veillard <veillard@redhat.com>
* po/*: regeneration of pot file, updates of .po
......
......@@ -962,8 +962,12 @@ def buildWrappers():
list = reference_keepers[classname]
for ref in list:
classes.write(" self.%s = None\n" % ref[1])
if classname in [ "virDomain", "virNetwork", "virStoragePool", "virStorageVol" ]:
if classname in [ "virDomain", "virNetwork" ]:
classes.write(" self._conn = conn\n")
elif classname in [ "virStorageVol", "virStoragePool" ]:
classes.write(" self._conn = conn\n" + \
" if not isinstance(conn, virConnect):\n" + \
" self._conn = conn._conn\n")
classes.write(" if _obj != None:self._o = _obj;return\n")
classes.write(" self._o = None\n\n");
destruct=None
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册