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
Fix typo in untracked_files
  • Loading branch information
s1341 committed May 9, 2014
commit 3ea450112501e0d9f11e554aaf6ce9f36b32b732
2 changes: 1 addition & 1 deletion git/repo/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -535,7 +535,7 @@ def untracked_files(self):
for line in proc.stdout:
if not line.startswith(prefix):
continue
filename = line[len(preffix):].rstrip('\n')
filename = line[len(prefix):].rstrip('\n')
# Special characters are escaped
if filename[0] == filename[-1] == '"':
filename = filename[1:-1].decode('string_escape')
Expand Down