Better parsing

This commit is contained in:
Gouvernathor 2024-04-04 23:25:15 +02:00
parent 923384eb37
commit 94b5ea15a5
1 changed files with 2 additions and 2 deletions

View File

@ -73,8 +73,8 @@ python early hide:
class chibi:
@staticmethod
def parse(l):
who = l.name()
action = l.name()
who = l.require(l.name)
action = l.require(l.name)
arguments = l.arguments() # may be None
l.expect_eol()