mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2025-01-11 09:49:29 -05:00
right super() param
This commit is contained in:
parent
bcd48b9636
commit
f87586e661
@ -100,7 +100,7 @@ class NotFoundError(SynapseError):
|
|||||||
def __init__(self, *args, **kwargs):
|
def __init__(self, *args, **kwargs):
|
||||||
if "errcode" not in kwargs:
|
if "errcode" not in kwargs:
|
||||||
kwargs["errcode"] = Codes.NOT_FOUND
|
kwargs["errcode"] = Codes.NOT_FOUND
|
||||||
super(UnrecognizedRequestError, self).__init__(
|
super(NotFoundError, self).__init__(
|
||||||
404,
|
404,
|
||||||
"Not found",
|
"Not found",
|
||||||
**kwargs
|
**kwargs
|
||||||
|
Loading…
Reference in New Issue
Block a user