mirror of
https://github.com/miaowware/qrm2.git
synced 2024-11-21 23:45:16 -05:00
info.py: fix indentation of info strings on mobile
This commit is contained in:
parent
b843282dac
commit
1d8293202a
11
exts/base.py
11
exts/base.py
@ -7,6 +7,7 @@ SPDX-License-Identifier: LiLiQ-Rplus-1.1
|
||||
"""
|
||||
|
||||
|
||||
import inspect
|
||||
import random
|
||||
import re
|
||||
from typing import Union, Iterable
|
||||
@ -187,11 +188,11 @@ class BaseCog(commands.Cog):
|
||||
"""Shows info about qrm."""
|
||||
embed = cmn.embed_factory(ctx)
|
||||
embed.title = "About qrm"
|
||||
embed.description = info.description
|
||||
embed.description = inspect.cleandoc(info.description)
|
||||
embed.add_field(name="Authors", value=", ".join(info.authors))
|
||||
embed.add_field(name="License", value=info.license)
|
||||
embed.add_field(name="Version", value=f"v{info.release} {'(`' + self.commit + '`)' if self.commit else ''}")
|
||||
embed.add_field(name="Contributing", value=info.contributing, inline=False)
|
||||
embed.add_field(name="Contributing", value=inspect.cleandoc(info.contributing), inline=False)
|
||||
embed.add_field(name="Official Server", value=info.bot_server, inline=False)
|
||||
embed.add_field(name="Donate", value="\n".join(f"{k}: {v}" for k, v in self.donation_links.items()),
|
||||
inline=False)
|
||||
@ -255,11 +256,7 @@ class BaseCog(commands.Cog):
|
||||
"""Shows how to create a bug report or feature request about the bot."""
|
||||
embed = cmn.embed_factory(ctx)
|
||||
embed.title = "Found a bug? Have a feature request?"
|
||||
embed.description = """Submit an issue on the [issue tracker](https://github.com/miaowware/qrm2/issues)!
|
||||
|
||||
All issues and requests related to resources (including maps, band charts, data) \
|
||||
should be added in \
|
||||
[miaowware/qrm-resources](https://github.com/miaowware/qrm-resources/issues)."""
|
||||
embed.description = inspect.cleandoc(info.issue_tracker)
|
||||
await ctx.send(embed=embed)
|
||||
|
||||
@commands.command(name="donate", aliases=["tip"], category=cmn.BoltCats.INFO)
|
||||
|
13
info.py
13
info.py
@ -1,3 +1,4 @@
|
||||
# flake8: noqa
|
||||
"""
|
||||
Static info about the bot.
|
||||
---
|
||||
@ -14,9 +15,15 @@ description = """
|
||||
qrm is a <:miaowware_irl:678275824436379678> MiaowWare project.
|
||||
"""
|
||||
license = "Québec Free and Open-Source Licence – Strong Reciprocity (LiLiQ-R+), version 1.1"
|
||||
contributing = """Check out the [source on GitHub](https://github.com/miaowware/qrm2). Contributions are welcome!
|
||||
contributing = """
|
||||
Check out the [source on GitHub](https://github.com/miaowware/qrm2). Contributions are welcome!
|
||||
|
||||
All issues and requests related to resources (including maps, band charts, data) should be added \
|
||||
in [miaowware/qrm-resources](https://github.com/miaowware/qrm-resources)."""
|
||||
All issues and requests related to resources (including maps, band charts, data) should be added in [miaowware/qrm-resources](https://github.com/miaowware/qrm-resources).
|
||||
"""
|
||||
issue_tracker = """
|
||||
Submit an issue on the [issue tracker](https://github.com/miaowware/qrm2/issues)!
|
||||
|
||||
All issues and requests related to resources (including maps, band charts, data) should be added in [miaowware/qrm-resources](https://github.com/miaowware/qrm-resources/issues).
|
||||
"""
|
||||
release = "2.9.2"
|
||||
bot_server = "https://discord.gg/Ntbg3J4"
|
||||
|
Loading…
Reference in New Issue
Block a user