Skip to content
This repository was archived by the owner on Oct 1, 2025. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion initialize.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,9 @@
ignore_git_errors = False

for line in config_file.readlines():
line = line.strip() # <~> fixes issues #7 and #8. #7: initialize.py may clone into dirnames containing \r) by stripping whitespace that may include carriage returns from windows machines editing the config files.
# Ignore comments and blank lines
if line.startswith("#") or line.strip() == '':
if line.startswith("#") or line == '': # <~> removing .strip() in 2nd check - now unnecessary, as of fix in line above
continue

# If we end up here, the line contains a Git URL (+options?) for us to clone
Expand Down