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:
Sylvain Bellemare 2016-02-14 17:19:13 +01:00
parent d3a0b9515c
commit e1f4b6c731

View File

@ -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():