fix misbehaving logger.warning line

This commit is contained in:
Jonathan Warren 2015-01-28 14:45:29 -05:00
parent bd9286ef41
commit 0c7330f900
1 changed files with 1 additions and 1 deletions

View File

@ -479,7 +479,7 @@ class receiveDataThread(threading.Thread):
payload, = row
self.sendObject(payload)
else:
logger.warning('%s asked for an object with a getdata which is not in either our memory inventory or our SQL inventory. We probably cleaned it out after advertising it but before they got around to asking for it.' % self.peer)
logger.warning('%s asked for an object with a getdata which is not in either our memory inventory or our SQL inventory. We probably cleaned it out after advertising it but before they got around to asking for it.' % (self.peer,))
# Our peer has requested (in a getdata message) that we send an object.
def sendObject(self, payload):