Browse Source

Indentation

pull/66/head
Louis 11 years ago
parent
commit
db94cf06a3
  1. 11
      patacrep/latex/syntax.py

11
patacrep/latex/syntax.py

@ -41,11 +41,12 @@ class Parser:
def p_error(self, token): def p_error(self, token):
"""Manage parsing errors.""" """Manage parsing errors."""
LOGGER.error("Error in file {}, line {} at position {}.".format( LOGGER.error(
str(self.filename), "Error in file {}, line {} at position {}.".format(
token.lineno, str(self.filename),
self.__find_column(token), token.lineno,
) self.__find_column(token),
)
) )
@staticmethod @staticmethod

Loading…
Cancel
Save