mirror of
https://github.com/wakatime/sublime-wakatime.git
synced 2023-08-10 21:13:02 +03:00
Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
6436cf6b62 | |||
e1e8861a6e |
@ -5,7 +5,7 @@ Maintainer: WakaTi.me <support@wakatime.com>
|
||||
Website: https://www.wakati.me/
|
||||
==========================================================="""
|
||||
|
||||
__version__ = '1.4.0'
|
||||
__version__ = '1.4.1'
|
||||
|
||||
import sublime
|
||||
import sublime_plugin
|
||||
@ -35,8 +35,10 @@ LOCK = threading.RLock()
|
||||
# check if we have SSL support
|
||||
try:
|
||||
import ssl
|
||||
import socket
|
||||
socket.ssl
|
||||
HAS_SSL = True
|
||||
except ImportError:
|
||||
except (ImportError, AttributeError):
|
||||
from subprocess import Popen
|
||||
|
||||
if HAS_SSL:
|
||||
|
Reference in New Issue
Block a user