Skip to content

Commit

Permalink
MS Wwindows warnings don't need deep stacktraces
Browse files Browse the repository at this point in the history
  • Loading branch information
mr-c committed Feb 14, 2023
1 parent c4c9add commit b6d6957
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion cwltool/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -1433,7 +1433,8 @@ def windows_check() -> None:
"Windows Subsystem for Linux 2 (WSL2). If don't need to execute "
"CWL documents, then you can ignore this warning, but please "
"consider migrating to https://pypi.org/project/cwl-utils/ "
"for your CWL document processing needs."
"for your CWL document processing needs.",
stacklevel=1,
)


Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@
"Windows Subsystem for Linux 2 (WSL2). If don't need to execute "
"CWL documents, then you can ignore this warning, but please "
"consider migrating to https://pypi.org/project/cwl-utils/ "
"for your CWL document processing needs."
"for your CWL document processing needs.",
stacklevel=1,
)

SETUP_DIR = os.path.dirname(__file__)
Expand Down

0 comments on commit b6d6957

Please sign in to comment.