Browse Source

Fix error message grammar

Christopher Laprise 6 years ago
parent
commit
ac7461d1e8
1 changed files with 2 additions and 2 deletions
  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