From e28afb085bbdc8aa70037bf75076fd64ca27aac7 Mon Sep 17 00:00:00 2001 From: Itxaso Aizpurua Date: Sun, 26 Mar 2023 16:41:38 +0200 Subject: [PATCH] run_clime -> run_clustintime --- clustintime/cli/run_clustintime.py | 2 +- clustintime/clustintime.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/clustintime/cli/run_clustintime.py b/clustintime/cli/run_clustintime.py index 0f15f7c..ff1331d 100644 --- a/clustintime/cli/run_clustintime.py +++ b/clustintime/cli/run_clustintime.py @@ -260,7 +260,7 @@ def _get_parser(): if __name__ == "__main__": raise RuntimeError( - "clustintime/cli/run_clime.py should not be run directly; \n" + "clustintime/cli/run_clustintime.py should not be run directly; \n" "Please `pip install` clustintime and use the" "`clustintime` command" ) diff --git a/clustintime/clustintime.py b/clustintime/clustintime.py index a9e9d21..573ec31 100644 --- a/clustintime/clustintime.py +++ b/clustintime/clustintime.py @@ -23,7 +23,7 @@ import sys from nilearn.input_data import NiftiMasker from nilearn.masking import apply_mask -from clustintime.cli.run_clime import _get_parser +from clustintime.cli.run_clustintime import _get_parser @@ -261,4 +261,4 @@ def _main(argv = None): options = _get_parser().parse_args(argv) clustintime(**vars(options)) if __name__ == '__main__': - _main(sys.argv[1:]) \ No newline at end of file + _main(sys.argv[1:])