fix bug when sending heartbeats with hidefilenames enabled

This commit is contained in:
Allan Pereira 2017-11-07 23:48:57 -02:00
parent 73e2387bfc
commit d46312f2cd
1 changed files with 3 additions and 3 deletions

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: