AutoArch/misc.py

10 lines
282 B
Python
Raw Normal View History

2019-07-12 04:58:23 -07:00
import discord
from discord.ext import commands
import settings
import random
def get_embed_footer(ctx):
footer = random.choice(settings.quotes_short)
if hasattr(ctx.bot, 'appinfo'):
footer += ' | Created by ' + str(ctx.bot.appinfo.owner)
return footer