made statements printed to screen shorter
This commit is contained in:
parent
7a98317439
commit
85845ff7a8
|
@ -340,10 +340,10 @@ class receiveDataThread(QThread):
|
||||||
random.seed()
|
random.seed()
|
||||||
objectHash, = random.sample(self.objectsThatWeHaveYetToGet, 1)
|
objectHash, = random.sample(self.objectsThatWeHaveYetToGet, 1)
|
||||||
if objectHash in inventory:
|
if objectHash in inventory:
|
||||||
print 'Inventory (in memory) already has object the hash of which we received in an inv message.'
|
print 'Inventory (in memory) already has object listed in inv message.'
|
||||||
del self.objectsThatWeHaveYetToGet[objectHash]
|
del self.objectsThatWeHaveYetToGet[objectHash]
|
||||||
elif isInSqlInventory(objectHash):
|
elif isInSqlInventory(objectHash):
|
||||||
print 'Inventory (SQL on disk) already has object the hash of which we received in an inv message.'
|
print 'Inventory (SQL on disk) already has object listed in inv message.'
|
||||||
del self.objectsThatWeHaveYetToGet[objectHash]
|
del self.objectsThatWeHaveYetToGet[objectHash]
|
||||||
else:
|
else:
|
||||||
print 'processData function making request for object:', repr(objectHash)
|
print 'processData function making request for object:', repr(objectHash)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user