Skip to content

Commit

Permalink
Forgot to remove variable.
Browse files Browse the repository at this point in the history
  • Loading branch information
felixfontein committed Jan 14, 2017
1 parent 9b477dd commit ac1ab18
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion v7/latex/latex/parser.py
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -666,7 +666,7 @@ def __read_formula(self, delimiter):
self.tokens.skip_current() self.tokens.skip_current()
elif token == tokenizer.Token.CurlyBraketOpen: elif token == tokenizer.Token.CurlyBraketOpen:
self.tokens.skip_current() self.tokens.skip_current()
words = self.__parse_words(math_mode=True, delimiter=tokenizer.Token.CurlyBraketClose) self.__parse_words(math_mode=True, delimiter=tokenizer.Token.CurlyBraketClose)
self.__expect(tokenizer.Token.CurlyBraketClose) self.__expect(tokenizer.Token.CurlyBraketClose)
elif token == tokenizer.Token.CurlyBraketClose: elif token == tokenizer.Token.CurlyBraketClose:
raise ParseError(self.tokens, "Unexpected closing curly braket during formula!", filename=self.filename) raise ParseError(self.tokens, "Unexpected closing curly braket during formula!", filename=self.filename)
Expand Down

0 comments on commit ac1ab18

Please sign in to comment.