Fix double comprehension

This commit is contained in:
jazzpi 2015-03-22 14:34:37 +01:00
parent 433b1dd6ac
commit 477b2a6b6b

View file

@ -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()