commit 96c92bc0762831e51d2b4d910b466540286fc131
Author: nshmyrev <nshmyrev@94700074-3cef-4d97-a70e-9c8c206c02f5>
Date:   Sat Oct 24 12:15:25 2015 +0000

    Fixes mistake
    
    
    
    git-svn-id: svn+ssh://svn.code.sf.net/p/cmusphinx/code/trunk/sphinxtrain@13114 94700074-3cef-4d97-a70e-9c8c206c02f5

diff --git a/python/cmusphinx/fstutils.py b/python/cmusphinx/fstutils.py
index b15469a..8bf0260 100644
--- a/python/cmusphinx/fstutils.py
+++ b/python/cmusphinx/fstutils.py
@@ -492,7 +492,7 @@ def lm_eval(lm, sent):
     for i in xrange(len(sent)):
         if sent[i] == '<s>':
             continue
-        prob = lm.prob([*sent[i::-1]])
+        prob = lm.prob(sent[i::-1])
         #print sent[i::-1], prob / math.log(10), bo
         ll += prob
     return ll
