Skip to content

Commit

Permalink
Typo
Browse files Browse the repository at this point in the history
  • Loading branch information
romain-intel committed Dec 19, 2024
1 parent e8d06ff commit 7d07fdf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion metaflow/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -594,7 +594,7 @@ def print_metaflow_exception(ex):
location = ""
if ex.source_file is not None:
location += " in file %s" % ex.source_file
if ex.line_no is None:
if ex.line_no is not None:
location += " on line %d" % ex.line_no
location += ":"
echo_always(location, bold=True)
Expand Down

0 comments on commit 7d07fdf

Please sign in to comment.