Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
mpenning committed Oct 10, 2023
2 parents 4eee9d4 + 85b2034 commit 3897c78
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions dev_tools/compare_v4_v6_methods.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,14 @@
print("ENV", environ)

from ciscoconfparse import IPv4Obj, IPv6Obj
from loguru import logger

try:
print("PYTHONPATH", str(os.environ['PYTHONPATH']))
except:
pass
except Exception as eee:
error = f"{eee}: Could not find PYTHONPATH."
logger.error(error)
raise OSError(error)

v4_list = dir(IPv4Obj("127.0.0.1"))
v6_list = dir(IPv6Obj("::1"))
Expand Down

0 comments on commit 3897c78

Please sign in to comment.