From c4d3df0ed8cd149742f54cb3be2c639d520d9b8d Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sun, 10 Jan 2016 00:47:13 +0530 Subject: [PATCH] ... --- src/calibre/utils/iphlpapi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/utils/iphlpapi.py b/src/calibre/utils/iphlpapi.py index 8524324263..3cfeb217d4 100644 --- a/src/calibre/utils/iphlpapi.py +++ b/src/calibre/utils/iphlpapi.py @@ -346,7 +346,7 @@ def adapters(): Route = namedtuple('Route', 'destination gateway netmask interface metric flags') def routes(): - """Get a collection of the available routes.""" + ''' A list of routes on this machine ''' ans = [] adapter_map = {a.if_index:a.name for a in adapters()} with _get_forward_table() as p_forward_table: