summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/main/java/com/googlesource/gerrit/plugins/replication/ListCommand.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/com/googlesource/gerrit/plugins/replication/ListCommand.java b/src/main/java/com/googlesource/gerrit/plugins/replication/ListCommand.java
index 3bb1e22..3546b0d 100644
--- a/src/main/java/com/googlesource/gerrit/plugins/replication/ListCommand.java
+++ b/src/main/java/com/googlesource/gerrit/plugins/replication/ListCommand.java
@@ -71,7 +71,7 @@ final class ListCommand extends SshCommand {
private void printRemote(Destination d, boolean detail) {
if (json) {
JsonObject obj = new JsonObject();
- obj.addProperty("remote", d.getRemoteConfig().getName());
+ obj.addProperty("Remote", d.getRemoteConfig().getName());
addProperty(obj, "Url", d.getUrls());
if (detail) {
addProperty(obj, "AdminUrl", d.getAdminUrls());