Skip to content

Commit

Permalink
FIx issue with combining lists
Browse files Browse the repository at this point in the history
  • Loading branch information
tekktrik committed Jan 15, 2025
1 parent 2782f9e commit 987606e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/rmdir.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
target = sys.argv[1]

for root, dirs, files in os.walk(target):
children = dirs.extend(files)
children = dirs + files
for name in children:
filepath = os.path.join(root, name)
os.chmod(filepath, 0o777)
Expand Down

0 comments on commit 987606e

Please sign in to comment.