fix welcome error
This commit is contained in:
parent
3aea250608
commit
de994a3592
1 changed files with 1 additions and 1 deletions
|
@ -437,7 +437,7 @@ class Mybot(commands.Cog):
|
||||||
user = ctx.message.author.name
|
user = ctx.message.author.name
|
||||||
print(user)
|
print(user)
|
||||||
try:
|
try:
|
||||||
audio_file = random.choice([f for f in os.listdir(audio_path + '/%s/' % user) if f.endswith('.mp3')])
|
audio_file = random.choice([f for f in os.listdir(self.audio_path + '/%s/' % user) if f.endswith('.mp3')])
|
||||||
audio_file = self.audio_path + '/%s/' % user + audio_file
|
audio_file = self.audio_path + '/%s/' % user + audio_file
|
||||||
except:
|
except:
|
||||||
audio_file = random.choice([f"{f}" for f in Path(self.audio_path + '/').glob('**/*.mp3')])
|
audio_file = random.choice([f"{f}" for f in Path(self.audio_path + '/').glob('**/*.mp3')])
|
||||||
|
|
Loading…
Reference in a new issue