|
From: <ba...@us...> - 2009-11-04 17:26:04
|
Revision: 1175
http://omc.svn.sourceforge.net/omc/?rev=1175&view=rev
Author: bartw
Date: 2009-11-04 17:25:48 +0000 (Wed, 04 Nov 2009)
Log Message:
-----------
fixed References up-calls
Modified Paths:
--------------
cmpi-bindings/trunk/swig/python/cmpi_pywbem_bindings.py
Modified: cmpi-bindings/trunk/swig/python/cmpi_pywbem_bindings.py
===================================================================
--- cmpi-bindings/trunk/swig/python/cmpi_pywbem_bindings.py 2009-08-10 07:32:20 UTC (rev 1174)
+++ cmpi-bindings/trunk/swig/python/cmpi_pywbem_bindings.py 2009-11-04 17:25:48 UTC (rev 1175)
@@ -289,8 +289,8 @@
while e and e.hasNext():
data = e.next()
assert(data.type == cmpi.CMPI_instance)
- piname=self.proxy.cmpi2pywbem_inst(data.value.ref)
- yield piname
+ pinst=self.proxy.cmpi2pywbem_inst(data.value.inst)
+ yield pinst
def ReferenceNames(self, path, resultClass=None, role=None):
cop = self.proxy.pywbem2cmpi_instname(path)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|