Skip to content

Commit 3ea4501

Browse files
committed
Fix typo in untracked_files
1 parent 2ffde74 commit 3ea4501

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

‎git/repo/base.py‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -535,7 +535,7 @@ def untracked_files(self):
535535
forlineinproc.stdout:
536536
ifnotline.startswith(prefix):
537537
continue
538-
filename=line[len(preffix):].rstrip('\n')
538+
filename=line[len(prefix):].rstrip('\n')
539539
# Special characters are escaped
540540
iffilename[0] ==filename[-1] =='"':
541541
filename=filename[1:-1].decode('string_escape')

0 commit comments

Comments
(0)