Skip to content

Commit

Permalink
fix arg
Browse files Browse the repository at this point in the history
  • Loading branch information
atarkowska committed May 9, 2018
1 parent 46ee280 commit ebb885e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions emgapianns/management/commands/import_qc.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,5 +56,4 @@ def import_qc(self, reader, job):
job=job, var=var, var_val_ucv=row[1]
)
anns.append(job_ann)
logger.info(
"Total %d Annotations for Run: %s" % (len(anns), job))
logger.info("Total %d Annotations for Run: %s" % (len(anns), job))
4 changes: 2 additions & 2 deletions emgapianns/management/lib/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ def add_arguments(self, parser):
)
parser.add_argument(
'--pipeline',
action='store_true',
dest='pipeline',
action='store',
dest='pipeline'
)

def handle(self, *args, **options):
Expand Down

0 comments on commit ebb885e

Please sign in to comment.