Switch last remaining decode to to_text (#24269)

This commit is contained in:
Matt Martz 2017-05-03 16:51:17 -05:00 committed by GitHub
parent b731c2d809
commit 7dbec976af

View file

@ -157,7 +157,7 @@ def main():
else:
response = u'%s\n' % to_text(value).rstrip(u'\n')
events[key.decode()] = response
events[to_text(key)] = response
if args.strip() == '':
module.fail_json(rc=256, msg="no command given")