Fix double comprehension
This commit is contained in:
parent
433b1dd6ac
commit
477b2a6b6b
1 changed files with 2 additions and 2 deletions
|
|
@ -151,8 +151,8 @@ class Command
|
|||
func(range, args)
|
||||
else
|
||||
# Step 8: Match command against existing commands
|
||||
matching = ([name for name, val of Ex.singleton() when \
|
||||
name.indexOf(command) is 0])
|
||||
matching = (name for name, val of Ex.singleton() when \
|
||||
name.indexOf(command) is 0)
|
||||
|
||||
matching.sort()
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue