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

This commit is contained in:
Marek Marczykowski-Górecki 2013-12-13 22:52:18 +01:00
parent 73c38d8d1c
commit 4505d643f9

View File

@ -21,8 +21,7 @@
# #
from qubes.qubes import QubesVmCollection,QubesException from qubes.qubes import QubesVmCollection,QubesException
from qubes.qubes import shutdown_counter_max from optparse import OptionParser
from optparse import OptionParser;
import sys import sys
import time import time
@ -50,7 +49,7 @@ def main():
else: else:
if options.verbose: 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) exit(0)
main() main()