app: Fix typo in error message

Fixes https://github.com/flatpak/flatpak/issues/1225
This commit is contained in:
Matthew Leeds 2017-12-02 19:42:53 -08:00 committed by Alexander Larsson
parent 4975b63873
commit bae681d0a9

View File

@ -215,7 +215,7 @@ flatpak_builtin_config (int argc, char **argv, GCancellable *cancellable, GError
else if (opt_list)
return list_config (argc, argv, dir, cancellable, error);
else
return flatpak_fail (error, _("Must specify one on --list, --get, --set or --unset"));
return flatpak_fail (error, _("Must specify one of --list, --get, --set or --unset"));
return TRUE;
}