We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 70ddd43 + 3eea1b5 commit f989250Copy full SHA for f989250
setup.py
@@ -33,7 +33,7 @@
33
author, email = re.match(r'^(.*) <(.*)>$', metadata['author']).groups()
34
35
36
-class MissingFile(BaseException):
+class MissingFile(Exception):
37
pass
38
39
src/gpodder/plugins/itunes.py
@@ -27,7 +27,7 @@
27
28
logger = logging.getLogger(__name__)
29
30
-class ITunesFeedException(BaseException):
+class ITunesFeedException(Exception):
31
32
src/gpodder/plugins/vimeo.py
@@ -38,7 +38,7 @@
FILEFORMAT_RANKING = ['mobile', 'sd', 'hd']
40
41
-class VimeoError(BaseException):
+class VimeoError(Exception):
42
43
44
0 commit comments