فهرست منبع

Fix error message grammar

Christopher Laprise 6 سال پیش
والد
کامیت
ac7461d1e8
1فایلهای تغییر یافته به همراه2 افزوده شده و 2 حذف شده
  1. 2 2
      qubesadmin/tools/qvm_template_postprocess.py

+ 2 - 2
qubesadmin/tools/qvm_template_postprocess.py

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