aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCole Robinson <crobinso@redhat.com>2009-02-16 22:44:49 +0000
committerCole Robinson <crobinso@redhat.com>2009-02-16 22:44:49 +0000
commita3d1fb9cf329c1bb11d35c3a3c6d17ffc6fbbb37 (patch)
tree6595e97267eae36a4a856cdda7055284831fdfd5 /python/generator.py
parentAdd virFileWriteStr() (diff)
downloadlibvirt-a3d1fb9cf329c1bb11d35c3a3c6d17ffc6fbbb37.tar.gz
libvirt-a3d1fb9cf329c1bb11d35c3a3c6d17ffc6fbbb37.tar.bz2
libvirt-a3d1fb9cf329c1bb11d35c3a3c6d17ffc6fbbb37.zip
Fix building python bindings: Skip bindings for virSaveLastError and
virFreeError
Diffstat (limited to 'python/generator.py')
-rwxr-xr-xpython/generator.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/python/generator.py b/python/generator.py
index 9c71c0597..0e8cca72c 100755
--- a/python/generator.py
+++ b/python/generator.py
@@ -344,6 +344,8 @@ skip_function = (
'virDefaultErrorFunc', # Python virErrorFuncHandler impl calls this from C
'virConnectDomainEventRegister', # overridden in virConnect.py
'virConnectDomainEventDeregister', # overridden in virConnect.py
+ 'virSaveLastError', # We have our own python error wrapper
+ 'virFreeError', # Only needed if we use virSaveLastError
)