Fixed an erroneous use of operator>> in textual.cc

This commit is contained in:
John Wiegley 2009-11-10 18:43:53 -05:00
parent 7cd37b1d50
commit 0ac2dc2810

View file

@ -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);