mirror of
https://github.com/borgbackup/borg.git
synced 2024-12-23 16:26:29 +00:00
14 lines
404 B
Python
Executable file
14 lines
404 B
Python
Executable file
#!/usr/bin/env python3
|
|
|
|
from textwrap import indent
|
|
|
|
import borg.archiver
|
|
from borg.helpers import Error, ErrorWithTraceback
|
|
|
|
classes = Error.__subclasses__() + ErrorWithTraceback.__subclasses__()
|
|
|
|
for cls in sorted(classes, key=lambda cls: (cls.__module__, cls.__qualname__)):
|
|
if cls is ErrorWithTraceback:
|
|
continue
|
|
print(' ', cls.__qualname__)
|
|
print(indent(cls.__doc__, ' ' * 8))
|