Skip to content

Commit

Permalink
fixed bug in database generator
Browse files Browse the repository at this point in the history
  • Loading branch information
PedroMTQ committed Jan 14, 2022
1 parent a982e6c commit 62c6eee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mantis/Database_generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ def worker_setup_databases(self, queue, master_pid):
while True:
record = queue.pop(0)
if record is None: break
if len(record) == 3:
if len(record) == 2:
database, stdout_path = record
taxon_id = None
else:
Expand Down

0 comments on commit 62c6eee

Please sign in to comment.