Skip to content
Snippets Groups Projects
Commit 10d3221e authored by Phil's avatar Phil
Browse files

Accept list of IP in Route.route(). (fix ticket #319)

parent 02d76dd3
No related branches found
No related tags found
No related merge requests found
......@@ -112,6 +112,8 @@ class Route:
def route(self,dest,verbose=None):
if type(dest) is list and dest:
dest = dest[0]
if dest in self.cache:
return self.cache[dest]
if verbose is None:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment