Browse Source

qvm-tools: one more fix for qvm-check tool

Marek Marczykowski-Górecki 10 years ago
parent
commit
4505d643f9
1 changed files with 2 additions and 3 deletions
  1. 2 3
      qvm-tools/qvm-check

+ 2 - 3
qvm-tools/qvm-check

@@ -21,8 +21,7 @@
 #
 
 from qubes.qubes import QubesVmCollection,QubesException
-from qubes.qubes import shutdown_counter_max
-from optparse import OptionParser;
+from optparse import OptionParser
 import sys
 import time
 
@@ -50,7 +49,7 @@ def main():
 
     else:
         if options.verbose: 
-            print >> sys.stdout, "A VM with the name '{0}' is exist.".format(vmname)
+            print >> sys.stdout, "A VM with the name '{0}' does exist.".format(vmname)
         exit(0)
 
 main()