Merge pull request #106 from allanpereira/master

Fix bug when sending heartbeats with hidefilenames enabled
This commit is contained in:
Alan Hamlett 2017-11-07 18:40:49 -08:00 committed by GitHub
commit 584d5b78c3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -107,9 +107,9 @@ def send_heartbeat(project=None, branch=None, hostname=None, stats={}, key=None,
# also delete any sensitive info when hiding file names
sensitive = ['dependencies', 'lines', 'lineno', 'cursorpos', 'branch']
for key in sensitive:
if key in data:
del data[key]
for sensitiveKey in sensitive:
if sensitiveKey in data:
del data[sensitiveKey]
break
except re.error as ex: