diff --git a/connpy/connapp.py b/connpy/connapp.py index d4bb266..c54c39b 100755 --- a/connpy/connapp.py +++ b/connpy/connapp.py @@ -8,7 +8,6 @@ import ast import argparse import sys import inquirer -import json from .core import node diff --git a/docs/connpy/index.html b/docs/connpy/index.html index cdb2eb1..dc8795f 100644 --- a/docs/connpy/index.html +++ b/docs/connpy/index.html @@ -91,7 +91,7 @@ hasip = router.test("show ip int brief","1.1.1.1") if hasip: print("Router has ip 1.1.1.1") else: - print("router don't has ip 1.1.1.1") + print("router does not have ip 1.1.1.1")
import connpy
@@ -211,7 +211,7 @@ hasip = router.test("show ip int brief","1.1.1.1")
if hasip:
print("Router has ip 1.1.1.1")
else:
- print("router don't has ip 1.1.1.1")
+ print("router does not have ip 1.1.1.1")
```
### Using manager configuration
@@ -257,7 +257,7 @@ from .connapp import connapp
from pkg_resources import get_distribution
__all__ = ["node", "nodes", "configfile", "connapp"]
-__version__ = "2.0.10"
+__version__ = "2.0.0"
__author__ = "Federico Luzzi"
__pdoc__ = {
'core': False,