sending sublime text version in user agent

This commit is contained in:
Alan Hamlett 2013-09-05 07:39:33 -07:00
parent b8e2b73620
commit 3703a6374f
1 changed files with 2 additions and 1 deletions

View File

@ -147,11 +147,12 @@ class SendActionThread(threading.Thread):
if not self.api_key:
print('missing api key')
return
ua = 'sublime/%d sublime-wakatime/%s' % (ST_VERSION, __version__)
cmd = [
API_CLIENT,
'--file', self.targetFile,
'--time', str('%f' % self.timestamp),
'--plugin', 'sublime-wakatime/%s' % __version__,
'--plugin', ua,
'--key', str(bytes.decode(self.api_key.encode('utf8'))),
]
if self.isWrite: