ENH: Remove extra new line after the written string

This commit is contained in:
Andy Cedilnik 2003-07-17 14:56:17 -04:00
parent d6ebc123f7
commit 11e212bfc2
1 changed files with 1 additions and 1 deletions

View File

@ -91,7 +91,7 @@ bool cmFileCommand::HandleWriteCommand(std::vector<std::string> const& args,
this->SetError(error.c_str()); this->SetError(error.c_str());
return false; return false;
} }
file << message << std::endl; file << message;
file.close(); file.close();
return true; return true;
} }