aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorKeir Fraser <keir@xensource.com>2007-07-01 22:23:16 +0100
committerKeir Fraser <keir@xensource.com>2007-07-01 22:23:16 +0100
commite0ccefb2fb2329d2f18f8a51c5b1b195564c6761 (patch)
tree9391307d195234adb22cdec32455d2f265ee62ac /tools
parentea66464712cdb7200087bd4354ba4329200ddc96 (diff)
downloadxen-e0ccefb2fb2329d2f18f8a51c5b1b195564c6761.tar.gz
xen-e0ccefb2fb2329d2f18f8a51c5b1b195564c6761.tar.bz2
xen-e0ccefb2fb2329d2f18f8a51c5b1b195564c6761.zip
xm: Fix a typo for xm network-detach.
Signed-off-by: Masaki Kanno <kanno.masaki@jp.fujitsu.com>
Diffstat (limited to 'tools')
-rw-r--r--tools/python/xen/xm/main.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/python/xen/xm/main.py b/tools/python/xen/xm/main.py
index d19a131972..17da145843 100644
--- a/tools/python/xen/xm/main.py
+++ b/tools/python/xen/xm/main.py
@@ -2213,7 +2213,7 @@ def xm_block_detach(args):
def xm_network_detach(args):
if serverType == SERVER_XEN_API:
- arg_check(args, "xm_block_detach", 2, 3)
+ arg_check(args, "xm_network_detach", 2, 3)
dom = args[0]
devid = args[1]
vif_refs = server.xenapi.VM.get_VIFs(get_single_vm(dom))