Skip to content
Merged
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
2 changes: 1 addition & 1 deletion gitFunctions.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def handle_captitalization_filename_changes():
for line in lines:
for entry in line.split(sep='\x00'): # ascii 0 is the delimiter
entry = entry.strip()
if entry.startswith("A"):
if entry.startswith("A "):
newfilerelativepath = entry[3:] # cut A and following space and NUL at the end
directoryofnewfile = os.path.dirname(os.path.join(sandbox, newfilerelativepath))
newfilename = os.path.basename(newfilerelativepath)
Expand Down