Skip to content

Commit

Permalink
fix typo (#1765)
Browse files Browse the repository at this point in the history
  • Loading branch information
rariyama authored Oct 7, 2022
1 parent b7a055d commit b389557
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ def digdag_inspect_arguments(callable_type, exclude_self, params):
except SystemExit as e:
# SystemExit only shows an exit code and it is not kind to users. So this block creates a specific error message.
# This error will happen if called python module name and method name are equal to those of the standard library module. (e.g. tokenize.main)
error = Exception("Failed to call python command with code:%d" % e.code, "Possible cause: Ivalid python module call, duplicae module name with standard library")
error = Exception("Failed to call python command with code:%d" % e.code, "Possible cause: Invalid python module call, duplicate module name with standard library")
error_type, error_value, _tb = sys.exc_info()
error_message = "%s %s" % (error.args[0], error.args[1])
error_traceback = traceback.format_exception(error_type, error_value, _tb)
Expand Down

0 comments on commit b389557

Please sign in to comment.