diff --git a/crlf.py b/crlf.py index 2c2028d..806837d 100644 --- a/crlf.py +++ b/crlf.py @@ -24,7 +24,7 @@ def crlf(file): def crlf_argparse(args): patterns = pipeable.input_many(args.patterns, skip_blank=True, strip=True) - files = pathclass.glob_many(patterns) + files = pathclass.glob_many_files(patterns) for file in files: crlf(file) pipeable.stdout(file.absolute_path)