Fix error message grammar

This commit is contained in:
Christopher Laprise 2018-01-02 00:42:47 -05:00
والد ed11346977
کامیت ac7461d1e8
هیچ کلید شناخته شده ای برای این امضا در پایگاه داده ها یافت نشد
شناسه کلید GPG: 448568C8B281C952

مشاهده پرونده

@ -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