removed previously deprecated ';' host separator

This commit is contained in:
Brian Coca 2016-09-09 17:31:25 -04:00
commit a3028783d4
2 changed files with 1 additions and 4 deletions

View file

@ -248,10 +248,6 @@ class Inventory(object):
if isinstance(pattern, list):
return list(itertools.chain(*map(cls.split_host_pattern, pattern)))
if ';' in pattern:
patterns = re.split('\s*;\s*', pattern)
display.deprecated("Use ',' or ':' instead of ';' to separate host patterns")
# If it's got commas in it, we'll treat it as a straightforward
# comma-separated list of patterns.