mirror of
https://github.com/wakatime/sublime-wakatime.git
synced 2023-08-10 21:13:02 +03:00
print response code in Sublime Console if api request failed
This commit is contained in:
parent
6436cf6b62
commit
a19e635ba3
@ -162,9 +162,11 @@ class SendActionThread(threading.Thread):
|
||||
if self.debug:
|
||||
cmd.append('--verbose')
|
||||
if HAS_SSL:
|
||||
wakatime.main(cmd)
|
||||
if self.debug:
|
||||
print(cmd)
|
||||
code = wakatime.main(cmd)
|
||||
if code != 0:
|
||||
print('Error: Response code %d from wakatime package' % code)
|
||||
else:
|
||||
cmd.insert(0, python_binary())
|
||||
if self.debug:
|
||||
|
Loading…
Reference in New Issue
Block a user