Skip to content

Commit 3916f20

Browse files
authored
Merge pull request #64 from tsalo/master
[FIX] Fix CLI.
2 parents ad9676a + d070783 commit 3916f20

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tedana/cli/run_tedana.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ def main(argv=None):
172172
logging.getLogger().setLevel(logging.DEBUG)
173173
elif options.quiet:
174174
logging.getLogger().setLevel(logging.WARNING)
175-
workflows.tedana.main(**vars(options))
175+
workflows.tedana(**vars(options))
176176

177177

178178
def run_t2smap(argv=None):
@@ -182,7 +182,7 @@ def run_t2smap(argv=None):
182182
logging.getLogger().setLevel(logging.DEBUG)
183183
elif options.quiet:
184184
logging.getLogger().setLevel(logging.WARNING)
185-
workflows.t2smap.main(**vars(options))
185+
workflows.t2smap(**vars(options))
186186

187187

188188
if __name__ == '__main__':

0 commit comments

Comments
 (0)