remove epg print
This commit is contained in:
parent
a672b0a3a8
commit
220795a6fb
1 changed files with 1 additions and 2 deletions
|
@ -50,7 +50,6 @@ async def hello(ctx):
|
||||||
@bot.command(name='epg')
|
@bot.command(name='epg')
|
||||||
async def epg(ctx):
|
async def epg(ctx):
|
||||||
global database
|
global database
|
||||||
await ctx.channel.send('epg:')
|
|
||||||
if database != {}:
|
if database != {}:
|
||||||
scheduled_list = ""
|
scheduled_list = ""
|
||||||
live_list = ""
|
live_list = ""
|
||||||
|
@ -65,7 +64,7 @@ async def epg(ctx):
|
||||||
if live_list != "":
|
if live_list != "":
|
||||||
await ctx.channel.send(f'```{live_list}```')
|
await ctx.channel.send(f'```{live_list}```')
|
||||||
else:
|
else:
|
||||||
await ctx.channel.send('```Empty database!```')
|
await ctx.channel.send('```Empty.```')
|
||||||
|
|
||||||
@bot.command(name='time')
|
@bot.command(name='time')
|
||||||
async def time(ctx):
|
async def time(ctx):
|
||||||
|
|
Loading…
Reference in a new issue