Skip to content

Commit 08b27ce

Browse files
committed
Fix typos #3116
1 parent fc156f9 commit 08b27ce

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

bot.py

+1
Original file line numberDiff line numberDiff line change
@@ -1694,6 +1694,7 @@ def main():
16941694
)
16951695
sys.exit(0)
16961696

1697+
# Set up discord.py internal logging
16971698
if os.environ.get("LOG_DISCORD"):
16981699
logger.debug(f"Discord logging enabled: {os.environ['LOG_DISCORD'].upper()}")
16991700
d_logger = logging.getLogger("discord")

core/thread.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@ def _format_info_embed(self, user, log_url, log_count, color):
321321
created = str((time - user.created_at).days)
322322
user_info = []
323323
if self.bot.config["thread_show_account_age"]:
324-
user_info.append(f"was created {days(created)}")
324+
user_info.append(f" was created {days(created)}")
325325

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

0 commit comments

Comments
 (0)