Skip to content

Commit

Permalink
TransRead: Fix misspelled module name
Browse files Browse the repository at this point in the history
Fix a misspelled module name in an except-clause.

Signed-off-by: Folker Schwesinger <dev@folker-schwesinger.de>
  • Loading branch information
schwesinger authored and JPEWdev committed Nov 19, 2024
1 parent 7cc19aa commit 6ac4a87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bmaptool/TransRead.py
Original file line number Diff line number Diff line change
Expand Up @@ -600,7 +600,7 @@ def _print_warning(timeout):
password = auth[2]
except FileNotFoundError:
pass
except netc.NetrcParseError as e:
except netrc.NetrcParseError as e:
_log.error(f"Error parsing line {e.lineno} of {e.filename}: {e.msg}")

if username and password:
Expand Down

0 comments on commit 6ac4a87

Please sign in to comment.