Skip to content

Commit

Permalink
Add newline in sync error message (#3603)
Browse files Browse the repository at this point in the history
  • Loading branch information
djmitche authored Oct 3, 2024
1 parent ff2b1cb commit 28628e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/TDB2.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ void TDB2::get_changes(std::vector<Task>& changes) {
void TDB2::revert() {
rust::Vec<tc::Operation> undo_ops = replica()->get_undo_operations();
if (undo_ops.size() == 0) {
std::cout << "No operations to undo.";
std::cout << "No operations to undo.\n";
return;
}
if (confirm_revert(undo_ops)) {
Expand Down

0 comments on commit 28628e5

Please sign in to comment.