From 644b58adb1409fe146bcd28cba127559934f94af Mon Sep 17 00:00:00 2001 From: Ethan Dalool Date: Tue, 21 Dec 2021 16:58:26 -0800 Subject: [PATCH] Use glob_many_files. --- crlf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)