Make it possible to say:

tags: 42

And have the tag be a string, not an int, so --tags matches.

Fixes #4110
pull/4395/head
Michael DeHaan 11 years ago
parent c5672cf16e
commit 5e30cd999c

@ -215,7 +215,9 @@ class Task(object):
self.module_args = tokens[1]
import_tags = self.module_vars.get('tags',[])
if type(import_tags) in [str,unicode]:
if type(import_tags) in [int,float]:
import_tags = str(import_tags)
elif type(import_tags) in [str,unicode]:
# allow the user to list comma delimited tags
import_tags = import_tags.split(",")
@ -247,6 +249,8 @@ class Task(object):
if apply_tags is not None:
if type(apply_tags) in [ str, unicode ]:
self.tags.append(apply_tags)
elif type(apply_tags) in [ int, float ]:
self.tags.append(str(apply_tags))
elif type(apply_tags) == list:
self.tags.extend(apply_tags)
self.tags.extend(import_tags)

Loading…
Cancel
Save