diff options
| author | 2020-07-22 23:30:53 -0700 | |
|---|---|---|
| committer | 2020-07-22 23:30:53 -0700 | |
| commit | 14b00ad1fdc065f1f5412a875f31182d4ccfe7a2 (patch) | |
| tree | 3d433083b686341286fe67e39e8e252530de5bfb | |
| parent | Charinfo: paginate the results (diff) | |
Charinfo: use more descriptive field name
Since the raw field is displayed on every page, but pages are
incomplete, it may be unclear whether the field's value is for the
current page or for all pages.
Co-authored-by: Kieran Siek <[email protected]>
| -rw-r--r-- | bot/cogs/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/cogs/utils.py b/bot/cogs/utils.py index d70fb300d..8171706d0 100644 --- a/bot/cogs/utils.py +++ b/bot/cogs/utils.py @@ -148,7 +148,7 @@ class Utils(Cog): if len(characters) > 1: # Maximum length possible is 252 so no need to truncate. - embed.add_field(name='Raw', value=f"`{''.join(raw_list)}`", inline=False) + embed.add_field(name='Full Raw Text', value=f"`{''.join(raw_list)}`", inline=False) await LinePaginator.paginate(char_list, ctx, embed, max_size=2000, empty=False) |