diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2014-05-09 17:20:01 +0200 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2014-05-09 17:20:01 +0200 |
commit | 64a4730ea1f9d7b69a1ba09b32c2aad0377bc10a (patch) | |
tree | f6ff7d33cb6ef59bf6602f15bfddc519de85bafa | |
parent | 2ffde74dd7b5cbc4c018f0d608049be8eccc5101 (diff) | |
parent | 3ea450112501e0d9f11e554aaf6ce9f36b32b732 (diff) | |
download | gitpython-64a4730ea1f9d7b69a1ba09b32c2aad0377bc10a.tar.gz |
Merge pull request #162 from s1341/0.3
Fix typo in untracked_files
-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') |