From a1a51f69f3a2d474872f8c4ade9415fdb12e7286 Mon Sep 17 00:00:00 2001 From: Alexis Hildebrandt Date: Thu, 25 Dec 2014 12:28:31 +0100 Subject: Correct no-python error messages [ci skip] --- src/textual.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/textual.cc b/src/textual.cc index b113c746..5bf5b23d 100644 --- a/src/textual.cc +++ b/src/textual.cc @@ -1245,13 +1245,13 @@ void instance_t::python_directive(char * line) void instance_t::import_directive(char *) { throw_(parse_error, - _("'python' directive seen, but Python support is missing")); + _("'import' directive seen, but Python support is missing")); } void instance_t::python_directive(char *) { throw_(parse_error, - _("'import' directive seen, but Python support is missing")); + _("'python' directive seen, but Python support is missing")); } #endif // HAVE_BOOST_PYTHON -- cgit v1.2.3