From: Daniel P. Berrange Date: Wed, 14 Feb 2007 17:20:27 +0000 (+0000) Subject: Blacklist vshRunConsole from python X-Git-Tag: LIBVIRT_0_2_0~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a1432a5215d95075308217713ec43acdfebedfc1;p=thirdparty%2Flibvirt.git Blacklist vshRunConsole from python --- diff --git a/ChangeLog b/ChangeLog index bab78be44a..7599f50478 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Tue Feb 14 12:19:24 EST 2007 Daniel P. Berrange + + * python/generator.py: blacklist vshRunConsole method from + the python bindings + Tue Feb 14 12:17:24 EST 2007 Daniel P. Berrange * po/libvirt.pot, po/*.po: Updated the i18n strings wrt to diff --git a/python/generator.py b/python/generator.py index 48cd3ee3a9..c54d25ec9c 100755 --- a/python/generator.py +++ b/python/generator.py @@ -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):