diff options
| author | Rapptz <[email protected]> | 2018-03-20 03:25:40 -0400 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2018-03-20 03:25:40 -0400 |
| commit | f176309179883c575a69c961cf3c8d947eb5fd6b (patch) | |
| tree | a275c81eaade6ceb4018d325d4a97b283d3d0264 | |
| parent | Fix Webhook.guild raising an AttributeError. (diff) | |
| download | discord.py-f176309179883c575a69c961cf3c8d947eb5fd6b.tar.xz discord.py-f176309179883c575a69c961cf3c8d947eb5fd6b.zip | |
[commands] Don't handle single quotes.
| -rw-r--r-- | discord/ext/commands/view.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/discord/ext/commands/view.py b/discord/ext/commands/view.py index 2319265d..843dc9a3 100644 --- a/discord/ext/commands/view.py +++ b/discord/ext/commands/view.py @@ -111,7 +111,6 @@ class StringView: # map from opening quotes to closing quotes _quotes = { '"': '"', - "'": "'", "«": "»", "‘": "’", "‚": "‛", @@ -125,7 +124,6 @@ _quotes = { "﹁": "﹂", "﹃": "﹄", """: """, - "'": "'", "「": "」", "«": "»", "‹": "›", |