fix: text property of command object

Co-authored-by: evgfilim1 <evgfilim1@yandex.ru>
This commit is contained in:
Googleplex 2021-04-24 20:07:14 +08:00 committed by GitHub
parent 674cda4b60
commit d20dd11f12
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -160,7 +160,7 @@ class Command(Filter):
if self.mentioned:
line += '@' + self.mention
if self.args:
line += ' ' + ' '.join(self.args)
line += ' ' + self.args
return line