From cf1354bb899726e17eaaf1df504c280b3e56f3d0 Mon Sep 17 00:00:00 2001 From: Pratik Anurag Date: Tue, 15 Oct 2019 19:49:51 +0530 Subject: =?UTF-8?q?removed=20Unnecessary=20=E2=80=9Celse=E2=80=9D=20after?= =?UTF-8?q?=20=E2=80=9Creturn=E2=80=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- git/config.py | 3 +-- 1 file changed, 1 insertion(+), 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 -- cgit v1.2.1