1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

changed deprecation to removal warning

This commit is contained in:
Brian Coca 2015-12-09 12:37:56 -08:00
parent 61dc4a7e67
commit 64864829c4

View file

@ -388,7 +388,7 @@ class Inventory(object):
end = -1 end = -1
subscript = (int(start), int(end)) subscript = (int(start), int(end))
if sep == '-': if sep == '-':
display.deprecated("Use [x:y] inclusive subscripts instead of [x-y]", version=2.0, removed=True) display.warning("Use [x:y] inclusive subscripts instead of [x-y] which has been removed")
return (pattern, subscript) return (pattern, subscript)