From b84cf047bd446f3c279b6ebc2eeb59b48d20b79a Mon Sep 17 00:00:00 2001 From: Bertrand Benjamin Date: Wed, 30 Oct 2019 20:58:46 +0100 Subject: [PATCH] Fix: chante value to content in raw --- mapytex/calculus/API/tokens/token.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mapytex/calculus/API/tokens/token.py b/mapytex/calculus/API/tokens/token.py index 0d57836..d032112 100644 --- a/mapytex/calculus/API/tokens/token.py +++ b/mapytex/calculus/API/tokens/token.py @@ -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 """