Skip to content

Commit 05834ea

Browse files
committed
fix path for iteration
1 parent ade99fc commit 05834ea

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/concierge.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1473,7 +1473,7 @@ def _install_config(self):
14731473
self.mkdir(dst)
14741474

14751475
# Copy all files from src to dst.
1476-
for config in src.iterdir():
1476+
for config in Path(src).iterdir():
14771477
self.cp(config, dst)
14781478

14791479
# Write new cm3.cfg

0 commit comments

Comments
 (0)