summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bitbake/lib/bb/data_smart.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/data_smart.py b/bitbake/lib/bb/data_smart.py
index 73e33ee10e..ec7bb561cc 100644
--- a/bitbake/lib/bb/data_smart.py
+++ b/bitbake/lib/bb/data_smart.py
@@ -409,7 +409,7 @@ class DataSmart(MutableMapping):
409 s = __expand_python_regexp__.sub(varparse.python_sub, s) 409 s = __expand_python_regexp__.sub(varparse.python_sub, s)
410 except SyntaxError as e: 410 except SyntaxError as e:
411 # Likely unmatched brackets, just don't expand the expression 411 # Likely unmatched brackets, just don't expand the expression
412 if e.msg != "EOL while scanning string literal": 412 if e.msg != "EOL while scanning string literal" and not e.msg.startswith("unterminated string literal"):
413 raise 413 raise
414 if s == olds: 414 if s == olds:
415 break 415 break