From e80b25cc646c726d34ca64e670c306a70e5142f0 Mon Sep 17 00:00:00 2001 From: Matthew Williams Date: Tue, 11 Feb 2014 13:42:57 -0500 Subject: [PATCH] lxc module: use spaces, not tabs --- salt/modules/lxc.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/salt/modules/lxc.py b/salt/modules/lxc.py index 27b1a8afa2d3..cfab07fb5df9 100644 --- a/salt/modules/lxc.py +++ b/salt/modules/lxc.py @@ -291,8 +291,8 @@ def list_(): for c in ctnrs: lines = __salt__['cmd.run']('lxc-info -n ' + c).splitlines() - for line in lines: - stat = line.split(':') + for line in lines: + stat = line.split(':') if stat[0] == 'state': s = stat[1].strip() break