Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add space before "was created ..." #3116

Closed
wants to merge 6 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -190,12 +190,20 @@ Real Madrid:
</a>
<br>
<br>
Advertise Your Server:
<br>
<a href='https://discord.gg/zP8KcF4VQz'>
<img height=100 src='https://user-images.githubusercontent.com/45324516/140673115-dd3e873c-36b6-4383-9eb4-db42e1986ab3.png' style='margin:5px'>
</a>
<br>
<br>
Discord Advice Center:
<br>
<a href='https://discord.gg/zmwZy5fd9v'>
<img height=100 src='https://i.imgur.com/1hrjcHd.png' style='margin:5px'>
</a>


Become a sponsor on [Patreon](https://patreon.com/kyber).

## Plugins
Expand Down
15 changes: 15 additions & 0 deletions SPONSORS.json
Original file line number Diff line number Diff line change
Expand Up @@ -90,5 +90,20 @@
}
]
}
},
{
"embed": {
"title": "Advertise Your Server",
"description": "Advertise Your Server is the leading advertising and growth Discord Server. With over 60,000 members we can help grow your community with our range of services.\n\n__**Advertise Your Server offers everything you need to grow and find servers:**__\n\n:chart_with_upwards_trend: **Discord Growth Experts** to give you advice on how to __grow your server.__ (server/advert reviews, growth tips)\n:dividers: Over 40 different channels for **different server categories.**\n:robot: Our own __custom__ **bump bot.** (Liam)\n:bar_chart: Currently the __BIGGEST__ advertising server on Discord.\n:computer: Our own server __Listing Site__!\n:ticket: Small Servers Program for servers with less than 300 members.\n:dvd: Weekly Podcast, Blog, Email Newsletter and YouTube Tutorials. \n\nhttps://discord.gg/zP8KcF4VQz\nhttps://aysdiscord.com",
"author": {
"name": "Advertise Your Server",
"icon_url": "https://cdn.discordapp.com/attachments/563522692418895872/907067815486427176/logo4.png"
},
"color": 431075,
"footer": {
"text": "Grow Your Discord Server"
},
"image": "https://cdn.discordapp.com/attachments/472811257913933834/907068966311166043/unknown_2.png"
}
}
]
2 changes: 1 addition & 1 deletion core/thread.py
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ def _format_info_embed(self, user, log_url, log_count, color):
created = str((time - user.created_at).days)
user_info = []
if self.bot.config["thread_show_account_age"]:
user_info.append(f"was created {days(created)}")
user_info.append(f" was created {days(created)}")

embed = discord.Embed(color=color, description=user.mention, timestamp=time)

Expand Down
8 changes: 8 additions & 0 deletions plugins/registry.json
Original file line number Diff line number Diff line change
Expand Up @@ -247,5 +247,13 @@
"title": "Claim Thread",
"icon_url": "https://cdn.discordapp.com/avatars/180314310298304512/7552e0089004079304cc9912d13ac81d.png",
"thumbnail_url": "https://cdn.discordapp.com/avatars/180314310298304512/7552e0089004079304cc9912d13ac81d.png"
},
"phishchecker": {
"repository": "TheDiscordHistorian/historian-cogs",
"branch": "main",
"description": "Deletes scam links from your server and optionally kick / ban the user.",
"title": "Scam Link Detector",
"icon_url": "https://cdn.discordapp.com/attachments/576521645540245505/895661244743299102/antifish.png",
"thumbnail_url": "https://cdn.discordapp.com/attachments/576521645540245505/895661244743299102/antifish.png"
}
}
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,5 @@ repository = 'https://github.com/kyb3r/modmail'
homepage = 'https://github.com/kyb3r/modmail'
keywords = ['discord', 'modmail']

[tool.pylint.format]react_to_contact_message
[tool.pylint.format]
max-line-length = "110"