mirror of
https://github.com/bigchaindb/bigchaindb.git
synced 2024-10-13 13:34:05 +00:00
Use explicit name
Besides the fact that explicit names are generally considered a better practice, one should also keep in mind that when debugging, a variable like "p" clashes with the debugger command.
This commit is contained in:
parent
d3a0b9515c
commit
e1f4b6c731
@ -78,9 +78,9 @@ def run_start(args):
|
||||
db.init()
|
||||
except DatabaseAlreadyExists:
|
||||
pass
|
||||
p = Processes()
|
||||
processes = Processes()
|
||||
logger.info('Start bigchaindb main process')
|
||||
p.start()
|
||||
processes.start()
|
||||
|
||||
|
||||
def main():
|
||||
|
Loading…
x
Reference in New Issue
Block a user