From 0546bcb0952b8059453562f6104ea99ba515b718 Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Mon, 12 May 2014 22:44:10 +0100 Subject: [PATCH] Fix error message. --- mclu_build.py | 2 +- mclu_import.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/mclu_build.py b/mclu_build.py index f9ba038..ad1c471 100644 --- a/mclu_build.py +++ b/mclu_build.py @@ -77,7 +77,7 @@ def run (c, args): running, inactive = lib.get_all_guests (c) if vm_name in running or vm_name in inactive: - sys.exit ("error: node name (%s) already exists" % vm_name) + sys.exit ("error: VM name (%s) already exists" % vm_name) output = '%s/%s.img' % (c['images_dir'], vm_name) diff --git a/mclu_import.py b/mclu_import.py index 565d714..aa08b83 100644 --- a/mclu_import.py +++ b/mclu_import.py @@ -68,7 +68,7 @@ def run (c, args): running, inactive = lib.get_all_guests (c) if vm_name in running or vm_name in inactive: - sys.exit ("error: node name (%s) already exists" % vm_name) + sys.exit ("error: VM name (%s) already exists" % vm_name) output = '%s/%s.img' % (c['images_dir'], vm_name) -- 1.8.3.1