diff options
author | John Wiegley <johnw@newartisans.com> | 2009-11-10 18:43:53 -0500 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-11-10 18:43:53 -0500 |
commit | 0ac2dc28104253faf82a3ed3d12bb16a1a150067 (patch) | |
tree | 22f39270427c3e3b32ac42c5e1144f0805b67873 /src | |
parent | 7cd37b1d50b5d6a0f6c771b18c05471197670bb9 (diff) | |
download | fork-ledger-0ac2dc28104253faf82a3ed3d12bb16a1a150067.tar.gz fork-ledger-0ac2dc28104253faf82a3ed3d12bb16a1a150067.tar.bz2 fork-ledger-0ac2dc28104253faf82a3ed3d12bb16a1a150067.zip |
Fixed an erroneous use of operator>> in textual.cc
Diffstat (limited to 'src')
-rw-r--r-- | src/textual.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/textual.cc b/src/textual.cc index 1d0d7998..bd7333d2 100644 --- a/src/textual.cc +++ b/src/textual.cc @@ -628,7 +628,7 @@ void instance_t::include_directive(char * line) if (! exists(filename)) throw_(std::runtime_error, - _("File to include was not found: '%1'" << filename)); + _("File to include was not found: '%1'") << filename); ifstream stream(filename); |