Remove an accidentally added debug log

This commit is contained in:
mathieui 2015-05-08 13:56:38 +02:00
parent 5a88bd1c89
commit 3171c96eed
No known key found for this signature in database
GPG key ID: C59F84CEEFD616E3

View file

@ -160,7 +160,6 @@ class TextBuffer(object):
"""
for i in range(len(self.messages) -1, -1, -1):
msg = self.messages[i]
log.debug('\n%s ≠≠≠ %s', msg.identifier, old_id)
if msg.identifier == old_id:
return i
return -1