Fix error message grammar

This commit is contained in:
Christopher Laprise 2018-01-02 00:42:47 -05:00
parent ed11346977
commit ac7461d1e8
No known key found for this signature in database
GPG Key ID: 448568C8B281C952

View File

@ -222,9 +222,9 @@ def pre_remove(args):
try:
tpl = app.domains[args.name]
except KeyError:
parser.error('Qube with this name do not exist')
parser.error('No Qube with this name exists')
for appvm in tpl.appvms:
parser.error('Qube {} use this template'.format(appvm.name))
parser.error('Qube {} uses this template'.format(appvm.name))
del app.domains[args.name]
return 0