Update client.py

hyper > common > util > to_bytestring
can not convert INT to byte
and raise ValueError("Non string type.")
This commit is contained in:
firkeuf
2016-05-13 12:02:10 +03:00
parent 28996fc73c
commit 50c5920592
+2 -2
View File
@@ -9,8 +9,8 @@ from apns2.errors import exception_class_for_reason
class NotificationPriority(Enum):
Immediate = 10
Delayed = 5
Immediate = '10'
Delayed = '5'
class APNsClient(object):