Skip to content

Commit

Permalink
Replace jtextfsm with textfsm
Browse files Browse the repository at this point in the history
  • Loading branch information
ktbyers committed May 19, 2018
1 parent 38b0132 commit 6dd6f63
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion napalm/base/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

# third party libs
import jinja2
import jtextfsm as textfsm
import textfsm
from netaddr import EUI
from netaddr import mac_unix
from netaddr import IPAddress
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
setuptools>=38.4.0
cffi>=1.11.3
future
jtextfsm
textfsm
jinja2
netaddr
pyYAML
Expand Down
2 changes: 1 addition & 1 deletion test/base/test_helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
HAS_JINJA = False

try:
import jtextfsm as textfsm # noqa
import textfsm # noqa
HAS_TEXTFSM = True
except ImportError:
HAS_TEXTFSM = False
Expand Down

0 comments on commit 6dd6f63

Please sign in to comment.