typo
-BMConfigParser. instead of BMConfigParser().
This commit is contained in:
parent
65bb6648e7
commit
73c41bff9d
|
@ -858,7 +858,7 @@ class MySimpleXMLRPCRequestHandler(SimpleXMLRPCRequestHandler):
|
|||
objectType, toStreamNumber, encryptedPayload, int(time.time()) + TTL,'')
|
||||
with shared.printLock:
|
||||
print 'Broadcasting inv for msg(API disseminatePreEncryptedMsg command):', hexlify(inventoryHash)
|
||||
if BMConfigParser.safeGetBoolean("network", "asyncore"):
|
||||
if BMConfigParser().safeGetBoolean("network", "asyncore"):
|
||||
queues.invQueue.put((toStreamNumber, inventoryHash))
|
||||
else:
|
||||
protocol.broadcastToSendDataQueues((
|
||||
|
@ -908,7 +908,7 @@ class MySimpleXMLRPCRequestHandler(SimpleXMLRPCRequestHandler):
|
|||
objectType, pubkeyStreamNumber, payload, int(time.time()) + TTL,'')
|
||||
with shared.printLock:
|
||||
print 'broadcasting inv within API command disseminatePubkey with hash:', hexlify(inventoryHash)
|
||||
if BMConfigParser.safeGetBoolean("network", "asyncore"):
|
||||
if BMConfigParser().safeGetBoolean("network", "asyncore"):
|
||||
queues.invQueue.put((pubkeyStreamNumber, inventoryHash))
|
||||
else:
|
||||
protocol.broadcastToSendDataQueues((
|
||||
|
|
|
@ -192,7 +192,7 @@ class singleWorker(threading.Thread, StoppableThread):
|
|||
|
||||
logger.info('broadcasting inv with hash: ' + hexlify(inventoryHash))
|
||||
|
||||
if BMConfigParser.safeGetBoolean("network", "asyncore"):
|
||||
if BMConfigParser().safeGetBoolean("network", "asyncore"):
|
||||
queues.invQueue.put((streamNumber, inventoryHash))
|
||||
else:
|
||||
protocol.broadcastToSendDataQueues((
|
||||
|
@ -286,7 +286,7 @@ class singleWorker(threading.Thread, StoppableThread):
|
|||
|
||||
logger.info('broadcasting inv with hash: ' + hexlify(inventoryHash))
|
||||
|
||||
if BMConfigParser.safeGetBoolean("network", "asyncore"):
|
||||
if BMConfigParser().safeGetBoolean("network", "asyncore"):
|
||||
queues.invQueue.put((streamNumber, inventoryHash))
|
||||
else:
|
||||
protocol.broadcastToSendDataQueues((
|
||||
|
@ -380,7 +380,7 @@ class singleWorker(threading.Thread, StoppableThread):
|
|||
|
||||
logger.info('broadcasting inv with hash: ' + hexlify(inventoryHash))
|
||||
|
||||
if BMConfigParser.safeGetBoolean("network", "asyncore"):
|
||||
if BMConfigParser().safeGetBoolean("network", "asyncore"):
|
||||
queues.invQueue.put((streamNumber, inventoryHash))
|
||||
else:
|
||||
protocol.broadcastToSendDataQueues((
|
||||
|
@ -513,7 +513,7 @@ class singleWorker(threading.Thread, StoppableThread):
|
|||
objectType, streamNumber, payload, embeddedTime, tag)
|
||||
PendingUpload().add(inventoryHash)
|
||||
logger.info('sending inv (within sendBroadcast function) for object: ' + hexlify(inventoryHash))
|
||||
if BMConfigParser.safeGetBoolean("network", "asyncore"):
|
||||
if BMConfigParser().safeGetBoolean("network", "asyncore"):
|
||||
queues.invQueue.put((streamNumber, inventoryHash))
|
||||
else:
|
||||
protocol.broadcastToSendDataQueues((
|
||||
|
@ -846,7 +846,7 @@ class singleWorker(threading.Thread, StoppableThread):
|
|||
# not sending to a chan or one of my addresses
|
||||
queues.UISignalQueue.put(('updateSentItemStatusByAckdata', (ackdata, tr._translate("MainWindow", "Message sent. Waiting for acknowledgement. Sent on %1").arg(l10n.formatTimestamp()))))
|
||||
logger.info('Broadcasting inv for my msg(within sendmsg function):' + hexlify(inventoryHash))
|
||||
if BMConfigParser.safeGetBoolean("network", "asyncore"):
|
||||
if BMConfigParser().safeGetBoolean("network", "asyncore"):
|
||||
queues.invQueue.put((toStreamNumber, inventoryHash))
|
||||
else:
|
||||
protocol.broadcastToSendDataQueues((
|
||||
|
@ -952,7 +952,7 @@ class singleWorker(threading.Thread, StoppableThread):
|
|||
objectType, streamNumber, payload, embeddedTime, '')
|
||||
PendingUpload().add(inventoryHash)
|
||||
logger.info('sending inv (for the getpubkey message)')
|
||||
if BMConfigParser.safeGetBoolean("network", "asyncore"):
|
||||
if BMConfigParser().safeGetBoolean("network", "asyncore"):
|
||||
queues.invQueue.put((streamNumber, inventoryHash))
|
||||
else:
|
||||
protocol.broadcastToSendDataQueues((
|
||||
|
|
Loading…
Reference in New Issue
Block a user