config: Fix a copy-paste error

The set handler was talking about --get.

Closes: #2531
Approved by: mwleeds
This commit is contained in:
Matthias Clasen
2019-01-01 17:37:35 -05:00
committed by Atomic Bot
parent a2e2068f67
commit 6877dc4ff7

View File

@@ -203,7 +203,7 @@ set_config (GOptionContext *context, int argc, char **argv, FlatpakDir *dir, GCa
if (argc < 3)
return usage_error (context, _("You must specify KEY and VALUE"), error);
else if (argc > 3)
return usage_error (context, _("Too many arguments for --get"), error);
return usage_error (context, _("Too many arguments for --set"), error);
key = get_config_key (argv[1], error);
if (key == NULL)