Skip to content

Commit

Permalink
Clean up old debugging statements
Browse files Browse the repository at this point in the history
  • Loading branch information
zimeon committed Sep 15, 2024
1 parent 9184f52 commit 92c92e9
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions ocfl/pyfs.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,6 @@ def ocfl_walk(f, dir='/', is_storage_root=False):
dir = '/' + dir
stack = [dir]
while len(stack) > 0:
# print("Stack " + str(stack))
dirpath = stack.pop()
entries = f.listdir(dirpath)
files = []
Expand All @@ -100,7 +99,6 @@ def ocfl_walk(f, dir='/', is_storage_root=False):
is_dir = True
try:
info = f.getinfo(entry_path)
# print(entry_path + " info: " + str(info))
is_dir = info.is_dir
except fs.errors.ResourceNotFound:
pass # Assume to be a directory
Expand Down

0 comments on commit 92c92e9

Please sign in to comment.