Fix error message.
authorRichard W.M. Jones <rjones@redhat.com>
Mon, 12 May 2014 21:44:10 +0000 (22:44 +0100)
committerRichard W.M. Jones <rjones@redhat.com>
Mon, 12 May 2014 21:44:10 +0000 (22:44 +0100)
mclu_build.py
mclu_import.py

index f9ba038..ad1c471 100644 (file)
@@ -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)
 
index 565d714..aa08b83 100644 (file)
@@ -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)