diff options
author | s1341 <s1341@users.noreply.github.com> | 2014-05-09 18:17:02 +0300 |
---|---|---|
committer | s1341 <s1341@users.noreply.github.com> | 2014-05-09 18:17:02 +0300 |
commit | 3ea450112501e0d9f11e554aaf6ce9f36b32b732 (patch) | |
tree | f6ff7d33cb6ef59bf6602f15bfddc519de85bafa /git | |
parent | 2ffde74dd7b5cbc4c018f0d608049be8eccc5101 (diff) | |
download | gitpython-3ea450112501e0d9f11e554aaf6ce9f36b32b732.tar.gz |
Fix typo in untracked_files
Diffstat (limited to 'git')
-rw-r--r-- | git/repo/base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git/repo/base.py b/git/repo/base.py index 97780105..8191b305 100644 --- a/git/repo/base.py +++ b/git/repo/base.py @@ -535,7 +535,7 @@ class Repo(object): 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') |