summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYaroslav Halchenko <debian@onerussian.com>2017-09-21 10:30:29 -0400
committerGitHub <noreply@github.com>2017-09-21 10:30:29 -0400
commit4bbaf1c5c792d14867890200db68da9fd82d5997 (patch)
tree41807c4802d36e8e678f9fea8914e8cb0eef53d2
parentfad63e83853a65ee9aa98d47a64da3b71e4c01af (diff)
parent2b3c16c39953e7a6f55379403ca5d204dcbdb1e7 (diff)
downloadgitpython-4bbaf1c5c792d14867890200db68da9fd82d5997.tar.gz
Merge pull request #666 from bpoldrack/bf-nullhandler
BF: Added missing NullHandler to logger in git.remote
-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')