Skip to content

Commit

Permalink
fixed issue with files.helpers.walk.walk() that was truncating direct…
Browse files Browse the repository at this point in the history
…ory listings after the first 100 files
  • Loading branch information
mwvaughn committed Nov 30, 2021
1 parent 263a3ad commit 1611820
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions tapis_cli/commands/taccapis/v2/files/helpers/walk.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,9 +115,10 @@ def _walk(directory_path,
page_size=page_size,
recurse=recurse,
agave=agave)
if sort:
listing.sort()
return listing
# Filter out dotfiles and directories if configured
if sort:
listing.sort()
return listing


def walk(directory_path,
Expand Down

0 comments on commit 1611820

Please sign in to comment.