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)
|
func(range, args)
|
||||||
else
|
else
|
||||||
# Step 8: Match command against existing commands
|
# Step 8: Match command against existing commands
|
||||||
matching = ([name for name, val of Ex.singleton() when \
|
matching = (name for name, val of Ex.singleton() when \
|
||||||
name.indexOf(command) is 0])
|
name.indexOf(command) is 0)
|
||||||
|
|
||||||
matching.sort()
|
matching.sort()
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue