mirror of
https://github.com/Sneed-Group/pypush-plus-plus
synced 2024-12-23 11:22:42 -06:00
add tlslite version check
This commit is contained in:
parent
0f2901a109
commit
5d4f0bcf4a
1 changed files with 3 additions and 0 deletions
3
apns.py
3
apns.py
|
@ -7,6 +7,9 @@ import time
|
||||||
from hashlib import sha1
|
from hashlib import sha1
|
||||||
|
|
||||||
import tlslite
|
import tlslite
|
||||||
|
if tlslite.__version__ != "0.8.0-alpha43":
|
||||||
|
print("WARNING: tlslite-ng is not the correct version!")
|
||||||
|
print("Please install tlslite-ng==0.8.0a43 or you will experience issues!!!")
|
||||||
|
|
||||||
import albert
|
import albert
|
||||||
import bags
|
import bags
|
||||||
|
|
Loading…
Reference in a new issue