Fix broken Python 2 compatibility
This commit is contained in:
+1
-1
@@ -129,7 +129,7 @@ class Unregistered(APNsException):
|
|||||||
"""The device token is inactive for the specified topic."""
|
"""The device token is inactive for the specified topic."""
|
||||||
|
|
||||||
def __init__(self, timestamp=None):
|
def __init__(self, timestamp=None):
|
||||||
super().__init__()
|
super(Unregistered, self).__init__()
|
||||||
|
|
||||||
self.timestamp = timestamp
|
self.timestamp = timestamp
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user