Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
mmguero committed Jan 19, 2024
2 parents d208dc4 + a2ebf7f commit 27dd55e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu:22.04
FROM ubuntu:kinetic

# Copyright 2023 Battelle Energy Alliance, LLC

Expand Down
2 changes: 1 addition & 1 deletion src/navv/_version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
"""This file defines the version of this module."""
__version__ = "3.3.2"
__version__ = "3.3.3"
2 changes: 1 addition & 1 deletion src/navv/spreadsheet_tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ def handle_ip(ip_to_check, dns_data, inventory, segments, ext_IPs, unk_int_IPs):
for x in range(0, len(segments[:-1])):
if segments[x].network == ip_to_check:
if ip_to_check in dns_data:
resolution = dns_data[ip_to_check].name
resolution = dns_data[ip_to_check]
elif ip_to_check in inventory:
resolution = inventory[ip_to_check].name
else:
Expand Down

0 comments on commit 27dd55e

Please sign in to comment.