diff --git a/apns2/errors.py b/apns2/errors.py index c1e7034..d86b59c 100644 --- a/apns2/errors.py +++ b/apns2/errors.py @@ -129,7 +129,7 @@ class Unregistered(APNsException): """The device token is inactive for the specified topic.""" def __init__(self, timestamp=None): - super().__init__() + super(Unregistered, self).__init__() self.timestamp = timestamp