mirror of
https://github.com/Garmelon/PFERD.git
synced 2026-04-12 15:35:05 +02:00
Swallow and print errors instead of crashing
This commit is contained in:
parent
a4c518bf4c
commit
afa48c2d2d
2 changed files with 31 additions and 0 deletions
|
|
@ -9,6 +9,7 @@ from typing import List, Optional, Union
|
|||
from .cookie_jar import CookieJar
|
||||
from .diva import (DivaDownloader, DivaDownloadStrategy, DivaPlaylistCrawler,
|
||||
diva_download_new)
|
||||
from .errors import swallow_and_print_errors
|
||||
from .ilias import (IliasAuthenticator, IliasCrawler, IliasDirectoryFilter,
|
||||
IliasDownloader, IliasDownloadStrategy,
|
||||
KitShibbolethAuthenticator, download_modified_or_new)
|
||||
|
|
@ -89,6 +90,7 @@ class Pferd(Location):
|
|||
|
||||
return organizer
|
||||
|
||||
@swallow_and_print_errors
|
||||
def ilias_kit(
|
||||
self,
|
||||
target: PathLike,
|
||||
|
|
@ -141,6 +143,7 @@ class Pferd(Location):
|
|||
clean=clean,
|
||||
)
|
||||
|
||||
@swallow_and_print_errors
|
||||
def diva_kit(
|
||||
self,
|
||||
target: Union[PathLike, Organizer],
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue