Blacklist vshRunConsole from python

This commit is contained in:
Daniel P. Berrange 2007-02-14 17:20:27 +00:00
parent 845272d541
commit a1432a5215
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,8 @@
Tue Feb 14 12:19:24 EST 2007 Daniel P. Berrange <berrange@redhat.com>
* python/generator.py: blacklist vshRunConsole method from
the python bindings
Tue Feb 14 12:17:24 EST 2007 Daniel P. Berrange <berrange@redhat.com>
* po/libvirt.pot, po/*.po: Updated the i18n strings wrt to

View File

@ -274,7 +274,8 @@ def skip_function(name):
return 1
if name == "virDomainFree":
return 1
if name == "vshRunConsole":
return 1
return 0
def print_function_wrapper(name, output, export, include):