Should be errors=strict since we don't want to end up matching hosts like '???'

pull/13425/head
Toshio Kuratomi 8 years ago
parent 13b295f1ee
commit 228ad3ca39

@ -96,7 +96,7 @@ class AdHocCLI(CLI):
super(AdHocCLI, self).run()
# only thing left should be host pattern
pattern = to_unicode(self.args[0])
pattern = to_unicode(self.args[0], errors='strict')
# ignore connection password cause we are local
if self.options.connection == "local":

Loading…
Cancel
Save