From 187e97cf6595364c6e8553cf313949fd5d590740 Mon Sep 17 00:00:00 2001 From: Greg Price Date: Wed, 30 Jul 2008 23:04:31 -0400 Subject: [PATCH 1/1] fix an error message in invirt-getconf --ls svn path=/trunk/packages/sipb-xen-base/; revision=802 --- debian/changelog | 6 ++++++ files/usr/sbin/invirt-getconf | 3 ++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index d6dfb7a..b31c97d 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +sipb-xen-base (8.13) unstable; urgency=low + + * fix an error message + + -- Greg Price Wed, 30 Jul 2008 23:04:07 -0400 + sipb-xen-base (8.12) unstable; urgency=low [ Greg Price ] diff --git a/files/usr/sbin/invirt-getconf b/files/usr/sbin/invirt-getconf index 06c0aa7..4721212 100755 --- a/files/usr/sbin/invirt-getconf +++ b/files/usr/sbin/invirt-getconf @@ -67,7 +67,8 @@ def main(argv): if opts.ls: if type(conf) not in (dict, list): raise invirt_exception( - '%s: node has no children (atomic datum)' % progress) + '%s: node has no children (atomic datum)' + % '.'.join(components)) if type(conf) == list: for i in xrange(len(conf)): print i -- 1.7.9.5