Skip to content

Commit 64a4730

Browse files
committed
Merge pull request gitpython-developers#162 from s1341/0.3
Fix typo in untracked_files
2 parents 2ffde74 + 3ea4501 commit 64a4730

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: git/repo/base.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -535,7 +535,7 @@ def untracked_files(self):
535535
for line in proc.stdout:
536536
if not line.startswith(prefix):
537537
continue
538-
filename = line[len(preffix):].rstrip('\n')
538+
filename = line[len(prefix):].rstrip('\n')
539539
# Special characters are escaped
540540
if filename[0] == filename[-1] == '"':
541541
filename = filename[1:-1].decode('string_escape')

0 commit comments

Comments
 (0)