Correct a minstake in mm2ep-depend
This commit is contained in:
parent
033d94dfe1
commit
329822d1a3
1 changed files with 2 additions and 2 deletions
|
@ -30,8 +30,8 @@ module Mm2ep
|
|||
puts "EVAL: #{token.to_s}"
|
||||
|
||||
parser.check_grammar line, token
|
||||
exit 1 unless token.errors.empty? || token.nil?
|
||||
|
||||
exit 1 unless !token.nil? && token.errors.empty?
|
||||
|
||||
puts "RESULT: #{token.compute}"
|
||||
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue