From 887cdcc217244172eb7f1ecd40fda8261213388a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ji=C5=99=C3=AD=20Klime=C5=A1?= Date: Fri, 15 Jul 2016 11:38:01 +0200 Subject: nmcli: remove the extra full stop from error messages $ nmcli dev modify Error: No interface specified.. $ nmcli dev modify bla Error: Device 'bla' not found.. --- clients/cli/devices.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'clients') diff --git a/clients/cli/devices.c b/clients/cli/devices.c index 6ca5f9b2b3..4a56799d48 100644 --- a/clients/cli/devices.c +++ b/clients/cli/devices.c @@ -624,7 +624,7 @@ get_device (NmCli *nmc, int *argc, char ***argv, GError **error) if (!ifname_ask) { g_set_error_literal (error, NMCLI_ERROR, NMC_RESULT_ERROR_USER_INPUT, - _("No interface specified.")); + _("No interface specified")); return NULL; } } else { @@ -643,7 +643,7 @@ get_device (NmCli *nmc, int *argc, char ***argv, GError **error) if (devices[i] == NULL) { g_set_error (error, NMCLI_ERROR, NMC_RESULT_ERROR_NOT_FOUND, - _("Device '%s' not found."), ifname); + _("Device '%s' not found"), ifname); } return devices[i]; -- cgit v1.2.1