in mutornadomon/net.py [0:0]
def _convert_to_unicode(ip): """Converts given ip to unicode if its str type for python2.""" if six.PY2 and type(ip) == str: return six.u(ip) return ip