summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/parse/ast.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/parse/ast.py')
-rw-r--r--bitbake/lib/bb/parse/ast.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/parse/ast.py b/bitbake/lib/bb/parse/ast.py
index db2bdc35ec..977ba375bf 100644
--- a/bitbake/lib/bb/parse/ast.py
+++ b/bitbake/lib/bb/parse/ast.py
@@ -146,7 +146,7 @@ class DataNode(AstNode):
146 data.setVar(key, val, parsing=True, **loginfo) 146 data.setVar(key, val, parsing=True, **loginfo)
147 147
148class MethodNode(AstNode): 148class MethodNode(AstNode):
149 tr_tbl = str.maketrans('/.+-@%&', '_______') 149 tr_tbl = str.maketrans('/.+-@%&~', '________')
150 150
151 def __init__(self, filename, lineno, func_name, body, python, fakeroot): 151 def __init__(self, filename, lineno, func_name, body, python, fakeroot):
152 AstNode.__init__(self, filename, lineno) 152 AstNode.__init__(self, filename, lineno)