From 89b78d9426a17df7ef54f17848b760be06611d39 Mon Sep 17 00:00:00 2001 From: Alexandre Bezroutchko Date: Fri, 12 Oct 2012 22:14:22 +0200 Subject: [PATCH] dom0/qvm-usb: changed output format for qvm-usb -l --- dom0/qvm-tools/qvm-usb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dom0/qvm-tools/qvm-usb b/dom0/qvm-tools/qvm-usb index 765017f5..238e1f97 100755 --- a/dom0/qvm-tools/qvm-usb +++ b/dom0/qvm-tools/qvm-usb @@ -120,7 +120,7 @@ def main(): attached_to = usb_check_attached(dev['xid'], dev['device']) attached_to_str = "" if attached_to: - attached_to_str = " (attached to '%s' as '%s')" % (attached_to['vm'], attached_to['frontend']) + attached_to_str = " (attached to %s:%s)" % (attached_to['vm'], attached_to['frontend']) print "%s\t%s%s" % (dev['name'], dev['desc'], attached_to_str) exit (0)