Merge pull request #161 from jmaliksi/jm_157
Throw error if draft isn't formatted with new lines
This commit is contained in:
commit
29b299d8ff
|
@ -614,7 +614,7 @@ class StartDraftCommand(Command):
|
|||
draft = Draft.make_draft()
|
||||
mentions = {f'<@!{m.id}>' for m in msg.mentions}
|
||||
content = msg.content.split('\n')[1:] # drop command out of message
|
||||
if len(content) % 3:
|
||||
if not content or len(content) % 3:
|
||||
await msg.channel.send('Invalid list')
|
||||
raise ValueError('Invalid length')
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user