From 8c14013b95fdd625cc305d719e762c5d5533e7c0 Mon Sep 17 00:00:00 2001 From: Matt Martz Date: Tue, 22 Dec 2015 15:37:41 -0600 Subject: [PATCH] Fix tabbed indentation in network/haproxy.py --- lib/ansible/modules/extras/network/haproxy.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/ansible/modules/extras/network/haproxy.py b/lib/ansible/modules/extras/network/haproxy.py index 0fb4beb3004..4cc1c1c618b 100644 --- a/lib/ansible/modules/extras/network/haproxy.py +++ b/lib/ansible/modules/extras/network/haproxy.py @@ -312,9 +312,9 @@ class HAProxy(object): Figure out what you want to do from ansible, and then do it. """ - self.get_current_state(self.host, self.backend) - self.previous_states = ','.join(self.status_server) - self.previous_weights = ','.join(self.status_weight) + self.get_current_state(self.host, self.backend) + self.previous_states = ','.join(self.status_server) + self.previous_weights = ','.join(self.status_weight) # toggle enable/disbale server if self.state == 'enabled':