Skip to content

Commit

Permalink
wesnothd: Added missing newline in message from 'clones' command
Browse files Browse the repository at this point in the history
  • Loading branch information
loonycyborg committed Sep 19, 2017
1 parent 8380845 commit 6a86b54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server/server.cpp
Expand Up @@ -2288,7 +2288,7 @@ void server::clones_handler(const std::string& /*issuer_name*/, const std::strin
}
}
if (clones.empty()) {
*out << "No clones found.";
*out << std::endl << "No clones found.";
}
}

Expand Down

0 comments on commit 6a86b54

Please sign in to comment.