summaryrefslogtreecommitdiff
path: root/src/py_value.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/py_value.cc')
-rw-r--r--src/py_value.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/py_value.cc b/src/py_value.cc
index a4de7c04..b1b2bba4 100644
--- a/src/py_value.cc
+++ b/src/py_value.cc
@@ -46,7 +46,7 @@ namespace {
if (scope_t * scope = value.as_pointer<scope_t>())
return expr_t(scope->lookup(name), scope);
}
- throw_(value_error, "Cannot lookup attributes in " << value.label());
+ throw_(value_error, _("Cannot lookup attributes in %1") << value.label());
return expr_t();
}