forked from pool/libvirt
b920f5444b
a6b8bae5-python-generator-fix1.patch 25ea8e47-python-generator-fix2.patch bnc#802619 OBS-URL: https://build.opensuse.org/package/show/Virtualization/libvirt?expand=0&rev=247
36 lines
1.6 KiB
Diff
36 lines
1.6 KiB
Diff
commit a6b8bae5a6a4752926eba409202ec061d81c6c8a
|
|
Author: Serge Hallyn <serge.hallyn@canonical.com>
|
|
Date: Wed Jan 30 21:05:45 2013 -0600
|
|
|
|
complete virterror->virerror name change
|
|
|
|
Without these two string changes in generator.py, the
|
|
virGetLastError wrapper does not get created in
|
|
/usr/share/pyshared/libvirt.py. Noticed when running
|
|
tests with virt-install.
|
|
|
|
Signed-off-by: Serge Hallyn <serge.hallyn@ubuntu.com>
|
|
|
|
Index: libvirt-1.0.2/python/generator.py
|
|
===================================================================
|
|
--- libvirt-1.0.2.orig/python/generator.py
|
|
+++ libvirt-1.0.2/python/generator.py
|
|
@@ -123,7 +123,7 @@ class docParser(xml.sax.handler.ContentH
|
|
self.function_return_field = attrs['field']
|
|
elif tag == 'enum':
|
|
if (attrs['file'] == "libvirt" or
|
|
- attrs['file'] == "virterror"):
|
|
+ attrs['file'] == "virerror"):
|
|
enum(attrs['type'],attrs['name'],attrs['value'])
|
|
elif attrs['file'] == "libvirt-lxc":
|
|
lxc_enum(attrs['type'],attrs['name'],attrs['value'])
|
|
@@ -137,7 +137,7 @@ class docParser(xml.sax.handler.ContentH
|
|
if self.function != None:
|
|
if (self.function_module == "libvirt" or
|
|
self.function_module == "virevent" or
|
|
- self.function_module == "virterror"):
|
|
+ self.function_module == "virerror"):
|
|
function(self.function, self.function_descr,
|
|
self.function_return, self.function_args,
|
|
self.function_file, self.function_module,
|