1
0
mirror of https://github.com/checktheroads/hyperglass synced 2024-05-11 05:55:08 +00:00

backend vrf support complete, ACTUALLY closes #16

This commit is contained in:
checktheroads
2019-09-30 23:48:15 -07:00
parent f756e11615
commit 556c76c9b5
2 changed files with 80 additions and 57 deletions

View File

@@ -113,7 +113,7 @@ class Connect:
raw = nm_connect_direct.send_command(query)
responses.append(raw)
log.debug(f'Raw response for command "{query}":\n{raw}')
response = "\n".join(responses)
response = "\n\n".join(responses)
log.debug(f"Response type:\n{type(response)}")
except (NetMikoTimeoutException, NetmikoTimeoutError) as scrape_error: