Commit ba61b472 by John Eskew

Temporary debugging info.

parent 2bcd19f2
......@@ -101,6 +101,11 @@ def main():
)
tags_param = module.params.get('tags')
print "tags_param type: {}".format(type(tags_param))
import pprint
pprint.pprint(tags_param)
tags = {}
if isinstance(tags_param, list):
for item in module.params.get('tags'):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment