diff options
author | 2019-09-10 22:34:30 -0600 | |
---|---|---|
committer | 2019-09-10 22:34:30 -0600 | |
commit | 8347c9ea91b5ec05cd57ddf6d40e88c9bac8ddd5 (patch) | |
tree | 82d0f8647b9fbb38e4462e0e26471da1124d506e /bot/utils | |
parent | Update contrib doc for allowing edits from maintainers (#268) (diff) | |
parent | Update bot/seasons/evergreen/snakes/utils.py (diff) |
Merge pull request #269 from python-discord/hacktoberfest-update
Hacktoberfest update & SaL Fix
Diffstat (limited to 'bot/utils')
-rw-r--r-- | bot/utils/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/utils/__init__.py b/bot/utils/__init__.py index 3249a9cf..72a681a3 100644 --- a/bot/utils/__init__.py +++ b/bot/utils/__init__.py @@ -110,7 +110,7 @@ def replace_many( regex = re.compile(pattern, re.I if ignore_case else 0) def _repl(match): - """Returns replacement depending on `ignore_case` and `match_case`""" + """Returns replacement depending on `ignore_case` and `match_case`.""" word = match.group(0) replacement = replacements[word.lower() if ignore_case else word] |