Correct no-python error messages

[ci skip]
This commit is contained in:
Alexis Hildebrandt 2014-12-25 12:28:31 +01:00
parent 3ad8639856
commit a1a51f69f3

View file

@ -1245,13 +1245,13 @@ void instance_t::python_directive(char * line)
void instance_t::import_directive(char *) void instance_t::import_directive(char *)
{ {
throw_(parse_error, 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 *) void instance_t::python_directive(char *)
{ {
throw_(parse_error, throw_(parse_error,
_("'import' directive seen, but Python support is missing")); _("'python' directive seen, but Python support is missing"));
} }
#endif // HAVE_BOOST_PYTHON #endif // HAVE_BOOST_PYTHON