From a1432a5215d95075308217713ec43acdfebedfc1 Mon Sep 17 00:00:00 2001 From: "Daniel P. Berrange" Date: Wed, 14 Feb 2007 17:20:27 +0000 Subject: [PATCH] Blacklist vshRunConsole from python --- ChangeLog | 5 +++++ python/generator.py | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) 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):