Skip to content

Commit

Permalink
Merge pull request #64 from tsalo/master
Browse files Browse the repository at this point in the history
[FIX] Fix CLI.
  • Loading branch information
emdupre authored May 21, 2018
2 parents ad9676a + d070783 commit 3916f20
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 3916f20

Please sign in to comment.