Skip to content

Commit cb09219

Browse files
committed
update clean command
1 parent 666986d commit cb09219

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jobrunner/lib/_filetools.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ def RemoveNodeFiles(config, nodedir):
222222
# get the list of files in nodedir
223223
nodefile_list = [
224224
os.path.abspath(nodefile)
225-
for nodefile in next(os.walk("."), (None, None, []))[2]
225+
for nodefile in os.listdir(".") # next(os.walk("."), (None, None, []))[2]
226226
]
227227

228228
# create a reference file list to test which nodefile should be archived

0 commit comments

Comments
 (0)