summaryrefslogtreecommitdiffstats
path: root/gitlint-core/gitlint/tests/base.py
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2021-12-04 03:31:49 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2021-12-04 03:31:49 +0000
commit23d0ac82f3d68663ddc74a0e1f9b963beb8d62b9 (patch)
treefc37aa2c97a3d28b3dee7f3892041158981ed335 /gitlint-core/gitlint/tests/base.py
parentReleasing progress-linux version 0.16.0-1. (diff)
downloadgitlint-23d0ac82f3d68663ddc74a0e1f9b963beb8d62b9.tar.xz
gitlint-23d0ac82f3d68663ddc74a0e1f9b963beb8d62b9.zip
Merging upstream version 0.17.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r--gitlint-core/gitlint/tests/base.py (renamed from gitlint/tests/base.py)2
1 files changed, 1 insertions, 1 deletions
diff --git a/gitlint/tests/base.py b/gitlint-core/gitlint/tests/base.py
index 017122b..9d2d165 100644
--- a/gitlint/tests/base.py
+++ b/gitlint-core/gitlint/tests/base.py
@@ -33,7 +33,7 @@ class BaseTestCase(unittest.TestCase):
logging.getLogger('gitlint').setLevel(logging.DEBUG)
logging.getLogger('gitlint').handlers = [self.logcapture]
- # Make sure we don't propagate anything to child loggers, we need to do this explicitely here
+ # Make sure we don't propagate anything to child loggers, we need to do this explicitly here
# because if you run a specific test file like test_lint.py, we won't be calling the setupLogging() method
# in gitlint.cli that normally takes care of this
logging.getLogger('gitlint').propagate = False