Use glob_many_files.
This commit is contained in:
parent
76f936a50a
commit
644b58adb1
1 changed files with 1 additions and 1 deletions
2
crlf.py
2
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)
|
||||
|
|
Loading…
Reference in a new issue