From 3ea450112501e0d9f11e554aaf6ce9f36b32b732 Mon Sep 17 00:00:00 2001 From: s1341 Date: Fri, 9 May 2014 18:17:02 +0300 Subject: [PATCH] Fix typo in untracked_files --- git/repo/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git/repo/base.py b/git/repo/base.py index 977801052..8191b3057 100644 --- a/git/repo/base.py +++ b/git/repo/base.py @@ -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')