diff options
| author | Aymeric Vincent <13720957+a-vincent@users.noreply.github.com> | 2020-04-29 11:59:20 +0200 |
|---|---|---|
| committer | Aymeric Vincent <13720957+a-vincent@users.noreply.github.com> | 2020-04-29 11:59:20 +0200 |
| commit | ab3c496d4e77828e0404aabd6319e1d6dfd2f1a2 (patch) | |
| tree | 4202322c8a813b008f169412731b6f60fb760e3b /miasm/expression/expression.py | |
| parent | 04008fd5aa03f14cacc0c3dc0735c671968c1477 (diff) | |
| download | focaccia-miasm-ab3c496d4e77828e0404aabd6319e1d6dfd2f1a2.tar.gz focaccia-miasm-ab3c496d4e77828e0404aabd6319e1d6dfd2f1a2.zip | |
Remove accidental non-ASCII character. Broke Miasm under "C" locale.
Diffstat (limited to 'miasm/expression/expression.py')
| -rw-r--r-- | miasm/expression/expression.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miasm/expression/expression.py b/miasm/expression/expression.py index 18fcb77a..ef05a2b6 100644 --- a/miasm/expression/expression.py +++ b/miasm/expression/expression.py @@ -373,7 +373,7 @@ class ExprVisitorCallbackTopToBottom(ExprVisitorBase): """ Rebuild expression by visiting sub-expressions Call @callback on each sub-expression - if @Ā¢allback return non None value, replace current node with this value + if @callback return non None value, replace current node with this value Else, continue visit of sub-expressions """ def __init__(self, callback): |