Skip to content

Commit

Permalink
Merge pull request napalm-automation-community#51 from itdependsnetwo…
Browse files Browse the repository at this point in the history
…rks/import

add multiple imports
  • Loading branch information
itdependsnetworks authored Dec 15, 2017
2 parents cab7340 + b4a1d4f commit 66fc52d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion napalm_panos/panos.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,10 @@
from napalm_base.exceptions import ConnectionException, ReplaceConfigException,\
MergeConfigException

from napalm_base.base import NetworkDriver
try:
from napalm_base import NetworkDriver
except ImportError:
from napalm_base.base import NetworkDriver

from napalm_base.utils import py23_compat

Expand Down

0 comments on commit 66fc52d

Please sign in to comment.