This commit is contained in:
Nick Hurley 2013-02-19 16:33:07 -08:00
Родитель 4b8c41a25e
Коммит a3548eab0e
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -21,7 +21,7 @@ class NeckoDnsProxyServer(DnsProxyServer):
return self.necko_ips[client]
except (AttributeError, KeyError):
iproute = subprocess.Popen(['ip', 'route', 'get', client],
stdout=subprocess.PIPE)
stdout=subprocess.PIPE)
res = iproute.stdout.read()
iproute.wait()
bits = res.split()