diff --git a/src/cfeintact/fisher_exact_test.py b/src/cfeintact/fisher_exact_test.py index 6c12091..9de3da1 100644 --- a/src/cfeintact/fisher_exact_test.py +++ b/src/cfeintact/fisher_exact_test.py @@ -4,7 +4,7 @@ def default_fisher_exact(*args, **kwargs): raise UserError("Cannot import scipy for fisher_exact test. " - "Please check if you have enough RAM for scipy (python -c 'import scipy').") + "Please check if you have enough RAM for scipy (python -c 'import scipy.stats').") try: @@ -15,5 +15,5 @@ def default_fisher_exact(*args, **kwargs): fisher_exact = default_fisher_exact except KeyboardInterrupt: logger.warning("Cannot import scipy for fisher_exact test. " - "Please check if you have enough RAM for scipy (python -c 'import scipy').") + "Please check if you have enough RAM for scipy (python -c 'import scipy.stats').") fisher_exact = default_fisher_exact