print response code in Sublime Console if api request failed

This commit is contained in:
Alan Hamlett 2013-09-30 07:04:24 -07:00
parent 6436cf6b62
commit a19e635ba3
1 changed files with 3 additions and 1 deletions

View File

@ -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: