From ac9823e6f1d2c645d2ff05883a9bbd2564164a5c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20Marczykowski-G=C3=B3recki?= Date: Wed, 11 Dec 2013 21:28:04 +0100 Subject: [PATCH] qvm-tools: indentation fix in qvm-check --- qvm-tools/qvm-check | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/qvm-tools/qvm-check b/qvm-tools/qvm-check index 5792cef6..e5b5e28a 100755 --- a/qvm-tools/qvm-check +++ b/qvm-tools/qvm-check @@ -44,13 +44,13 @@ def main(): vmname = args[0] vm = qvm_collection.get_vm_by_name(vmname) if vm is None: - if options.verbose: - print >> sys.stdout, "A VM with the name '{0}' does not exist in the system!".format(vmname) - exit(1) + if options.verbose: + print >> sys.stdout, "A VM with the name '{0}' does not exist in the system!".format(vmname) + exit(1) else: - if options.verbose: - print >> sys.stdout, "A VM with the name '{0}' is exist.".format(vmname) - exit(0) + if options.verbose: + print >> sys.stdout, "A VM with the name '{0}' is exist.".format(vmname) + exit(0) main()