Skip to content

Commit b4d8125

Browse files
author
Gábor Boros
committed
Fix variable naming
1 parent 2622bda commit b4d8125

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

rethinkdb/_export.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -439,9 +439,9 @@ def run_clients(options, workingDir, db_table_set):
439439
processes = [process for process in processes if process.is_alive()]
440440

441441
if len(processes) < options.clients and len(arg_lists) > 0:
442-
newProcess = multiprocessing.Process(target=export_table, args=arg_lists.pop(0))
443-
newProcess.start()
444-
processes.append(newProcess)
442+
new_process = multiprocessing.Process(target=export_table, args=arg_lists.pop(0))
443+
new_process.start()
444+
processes.append(new_process)
445445

446446
update_progress(progress_info, options)
447447

0 commit comments

Comments
 (0)