diff options
author | 2019-09-11 23:21:17 +0800 | |
---|---|---|
committer | 2019-09-11 23:21:17 +0800 | |
commit | bfdfd5d4836c5f1a261388280f109b09e860738f (patch) | |
tree | 62b632d778c78b1edf6cacafa18996a6b2c33077 /bot/utils/__init__.py | |
parent | Add more uwu conversions (diff) | |
parent | Merge pull request #269 from python-discord/hacktoberfest-update (diff) |
Merge branch 'text-modify-embeds' of github.com:python-discord/seasonalbot into text-modify-embeds
Diffstat (limited to 'bot/utils/__init__.py')
-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] |