You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The rich library (already required by Workbench) provides a way to print exception tracebacks so that they are much more readable. For example, Python's default looks like this:
Traceback (most recent call last):
File "/home/mark/hacking/islandora_workbench/./workbench", line 1350, in <module>
check_input(config, args)
File "/home/mark/hacking/islandora_workbench/workbench_utils.py", line 1137, in check_input
print("Foo" + none)
NameError: name 'none' is not defined. Did you mean: 'None'?
The
rich
library (already required by Workbench) provides a way to print exception tracebacks so that they are much more readable. For example, Python's default looks like this:but rich produces exception tracebacks like this:
The text was updated successfully, but these errors were encountered: