Remove all bad-whitespaces

Signed-off-by: Mohan Boddu <mboddu@redhat.com>
This commit is contained in:
Mohan Boddu 2016-08-29 11:47:25 -05:00 committed by Mike McLean
parent 4250d9a67a
commit dd82e9cea2
12 changed files with 736 additions and 736 deletions

View file

@ -268,7 +268,7 @@ class SimpleRuleSet(object):
return tests, negate, action
def get_test_handler(self, str):
name = str.split(None,1)[0]
name = str.split(None, 1)[0]
try:
return self.tests[name](str)
except KeyError:
@ -284,7 +284,7 @@ class SimpleRuleSet(object):
if isinstance(action, list):
_recurse(action, index)
else:
name = action.split(None,1)[0]
name = action.split(None, 1)[0]
index[name] = 1
index = {}
_recurse(self.ruleset, index)