diff options
author | Alexis Hildebrandt <afh@surryhill.net> | 2014-12-25 12:28:31 +0100 |
---|---|---|
committer | Alexis Hildebrandt <afh@surryhill.net> | 2014-12-25 12:28:31 +0100 |
commit | a1a51f69f3a2d474872f8c4ade9415fdb12e7286 (patch) | |
tree | 361d41b8224f1355ac11bad6c97bbd41d8e0bc81 /src/textual.cc | |
parent | 3ad86398567366c30ae2b3d5c73b47eeb02e3169 (diff) | |
download | fork-ledger-a1a51f69f3a2d474872f8c4ade9415fdb12e7286.tar.gz fork-ledger-a1a51f69f3a2d474872f8c4ade9415fdb12e7286.tar.bz2 fork-ledger-a1a51f69f3a2d474872f8c4ade9415fdb12e7286.zip |
Correct no-python error messages
[ci skip]
Diffstat (limited to 'src/textual.cc')
-rw-r--r-- | src/textual.cc | 4 |
1 files 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 |