diff --git a/README.md b/README.md index 92acbf1..aa85be4 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,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 diff --git a/connpy/__init__.py b/connpy/__init__.py index 7e152e0..78ad9ae 100644 --- a/connpy/__init__.py +++ b/connpy/__init__.py @@ -79,7 +79,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