Fix: chante value to content in raw

This commit is contained in:
Bertrand Benjamin 2019-10-30 20:58:46 +01:00
parent d446139af3
commit b84cf047bd
1 changed files with 1 additions and 1 deletions

View File

@ -87,7 +87,7 @@ class Token(object):
@property
def raw(self):
""" Get python's raw forme of the token """
return self._mo.value
return self._mo.content
def _operate(self, other, operation):
""" Make a operation between 2 Tokens """