diff options
author | Richard W.M. Jones <rjones@redhat.com> | 2007-05-29 14:58:27 +0000 |
---|---|---|
committer | Richard W.M. Jones <rjones@redhat.com> | 2007-05-29 14:58:27 +0000 |
commit | b599903eb294f14bc2ff3492102d860479ead872 (patch) | |
tree | 2c0adcdff7b393979fa5eda06ecc5de5079582f6 /generator.py | |
parent | 33af9b643ad0c342bb058453ae50035e8abdbb0e (diff) | |
download | libvirt-python-b599903eb294f14bc2ff3492102d860479ead872.tar.gz |
+Tue May 29 15:56:00 BST 2007 Richard W.M. Jones <rjones@redhat.com>v0.2.3LIVIRT_0_2_3
+
+ * python/generator.py, python/libvir.c, python/libvir.py:
+ Wrap the virGetVersion call as Python libvirt.getVersion.
+
+ * src/libvirt.c: Change virGetVersion so that the driver name
+ is case insensitive.
+
Diffstat (limited to 'generator.py')
-rwxr-xr-x | generator.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/generator.py b/generator.py index c3c79dc..3dc3212 100755 --- a/generator.py +++ b/generator.py @@ -287,6 +287,8 @@ def skip_function(name): return 1 if name == "vshRunConsole": return 1 + if name == "virGetVersion": + return 1 return 0 def print_function_wrapper(name, output, export, include): |