Skip to content

Commit

Permalink
Fix CLI.
Browse files Browse the repository at this point in the history
  • Loading branch information
tsalo committed May 21, 2018
1 parent 352f878 commit d070783
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tedana/cli/run_tedana.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ def main(argv=None):
logging.getLogger().setLevel(logging.DEBUG)
elif options.quiet:
logging.getLogger().setLevel(logging.WARNING)
workflows.tedana.main(**vars(options))
workflows.tedana(**vars(options))


def run_t2smap(argv=None):
Expand All @@ -182,7 +182,7 @@ def run_t2smap(argv=None):
logging.getLogger().setLevel(logging.DEBUG)
elif options.quiet:
logging.getLogger().setLevel(logging.WARNING)
workflows.t2smap.main(**vars(options))
workflows.t2smap(**vars(options))


if __name__ == '__main__':
Expand Down

0 comments on commit d070783

Please sign in to comment.