diff options
author | Frederic Peters <fpeters@entrouvert.com> | 2008-04-29 12:09:55 +0000 |
---|---|---|
committer | Frederic Peters <fpeters@entrouvert.com> | 2008-04-29 12:09:55 +0000 |
commit | c0650e55a6fa2aca6095b6447cab9f6a3db0c182 (patch) | |
tree | 994a01373a0f7f64a977199ea37d9419553ed277 /bindings/lang_python.py | |
parent | 8b97995ec79f93ae7c3ccaedaaa87849a7e8a0df (diff) | |
download | lasso-c0650e55a6fa2aca6095b6447cab9f6a3db0c182.tar.gz lasso-c0650e55a6fa2aca6095b6447cab9f6a3db0c182.tar.xz lasso-c0650e55a6fa2aca6095b6447cab9f6a3db0c182.zip |
[project @ fpeters@0d.be-20080406145106-b6ywyx9f53w39y0e]
fixed returned list of gobject
Original author: Frederic Peters <fpeters@0d.be>
Date: 2008-04-06 16:51:06.682000+02:00
Diffstat (limited to 'bindings/lang_python.py')
-rw-r--r-- | bindings/lang_python.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bindings/lang_python.py b/bindings/lang_python.py index 46980c61..f4f051f8 100644 --- a/bindings/lang_python.py +++ b/bindings/lang_python.py @@ -461,7 +461,7 @@ if WSF_SUPPORT: print >> fd, ' value = _lasso.%s(self._cptr%s)' % ( function_name, c_args) print >> fd, ' if value is not None:' - print >> fd, ' value = tuple([x._cptr for x in value])' + print >> fd, ' value = tuple([cptrToPy(x) for x in value])' print >> fd, ' return value' elif self.is_pygobject(m.return_type): print >> fd, ' return cptrToPy(_lasso.%s(self._cptr%s))' % ( |