summaryrefslogtreecommitdiff
path: root/git
diff options
context:
space:
mode:
authorBenjamin Poldrack <benjaminpoldrack@gmail.com>2017-08-31 02:35:36 +0200
committerBenjamin Poldrack <benjaminpoldrack@gmail.com>2017-09-21 15:42:47 +0200
commit2b3c16c39953e7a6f55379403ca5d204dcbdb1e7 (patch)
treee249b397084b90483a8d2994a1aa0d236389e7ea /git
parentcf8dc259fcc9c1397ea67cec3a6a4cb5816e3e68 (diff)
downloadgitpython-2b3c16c39953e7a6f55379403ca5d204dcbdb1e7.tar.gz
BF: Added missing NullHandler to logger in git.remote
Diffstat (limited to 'git')
-rw-r--r--git/remote.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/git/remote.py b/git/remote.py
index fd76e592..c3a51744 100644
--- a/git/remote.py
+++ b/git/remote.py
@@ -38,6 +38,7 @@ from .refs import (
log = logging.getLogger('git.remote')
+log.addHandler(logging.NullHandler())
__all__ = ('RemoteProgress', 'PushInfo', 'FetchInfo', 'Remote')