From e97f789913f4de1069012e019eb836dd521c77cd Mon Sep 17 00:00:00 2001 From: Rik Theys Date: Sun, 26 May 2013 23:06:23 +0200 Subject: [PATCH] Fix tabs --- library/cloud/virt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/library/cloud/virt b/library/cloud/virt index 62c9158558a..2ac079058a4 100644 --- a/library/cloud/virt +++ b/library/cloud/virt @@ -281,11 +281,11 @@ class Virt(object): results = [] for x in vms: try: - if state: - vmstate = self.conn.get_status2(x) - if vmstate == state: - results.append(x.name()) - else: + if state: + vmstate = self.conn.get_status2(x) + if vmstate == state: + results.append(x.name()) + else: results.append(x.name()) except: pass