diff options
Diffstat (limited to 'git/config.py')
-rw-r--r-- | git/config.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/git/config.py b/git/config.py index b03d9d42..edd5750b 100644 --- a/git/config.py +++ b/git/config.py @@ -339,8 +339,7 @@ class GitConfigParser(with_metaclass(MetaParserBuilder, cp.RawConfigParser, obje if PY3: return v.encode(defenc).decode('unicode_escape') - else: - return v.decode('string_escape') + return v.decode('string_escape') # end # end |