Previsouly this would run even if no proc matched.

This commit is contained in:
John Anderson 2014-07-29 23:43:41 -07:00 committed by Colton Myers
parent 9a02306c7e
commit 049210cd93

View File

@ -194,8 +194,10 @@ class Inventory(Target):
else:
proc = '_parse_group_line'
varname = line.strip('[]')
continue
getattr(self, proc)(line, varname)
getattr(self, proc)(line, varname)
continue
def _parse_group_line(self, line, varname):
'''