BF: return str(host) to avoid spurious characters in the logs (Close gh-113)

thanks to opoplawski@github
pull/108/merge
Yaroslav Halchenko 2013-02-01 16:07:00 -05:00
parent 5f2d3832f7
commit f8983872ad
1 changed files with 1 additions and 1 deletions

View File

@ -130,4 +130,4 @@ class FailRegex(Regex):
s = self._matchCache.string
r = self._matchCache.re
raise RegexException("No 'host' found in '%s' using '%s'" % (s, r))
return host
return str(host)