aboutsummaryrefslogtreecommitdiff
path: root/backends.py
diff options
context:
space:
mode:
Diffstat (limited to 'backends.py')
-rwxr-xr-xbackends.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/backends.py b/backends.py
index 7bea10a..0292749 100755
--- a/backends.py
+++ b/backends.py
@@ -55,7 +55,7 @@ def do_replacement(regex, line, confdata):
def do_mesondefine(line, confdata):
arr = line.split()
if len(arr) != 2:
- raise interpreter.InvalidArguments('#mesondefine does not contain exactly two tokens.')
+ raise interpreter.InvalidArguments('#mesondefine does not contain exactly two tokens: %s', line.strip())
varname = arr[1]
try:
v = confdata.get(varname)