Skip to content

Commit 973087c

Browse files
authored
Update myjdapi/exception.py
1 parent cf87209 commit 973087c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

myjdapi/exception.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ def get_exception(
7070
def __init__(self, exception_source, *args, **kwargs):
7171
"""Initialize MyJDownloader API exception."""
7272
self.source = exception_source.upper()
73-
super().__init__(*args, **kwargs)
73+
super(MYJDApiException, self).__init__(*args, **kwargs)
7474

7575

7676
class MYJDApiCommandNotFoundException(MYJDApiException):

0 commit comments

Comments
 (0)