mirror of
https://gitlab.com/virt-viewer/virt-viewer.git
synced 2025-01-06 13:17:45 +03:00
Remove unused i18n translation
All the g_printerr does is printing the message of the GError with a newline at the end. Hence, use a simple format string without the need to translate it. Signed-off-by: Pino Toscano <ptoscano@redhat.com>
This commit is contained in:
parent
0325901984
commit
35443daed4
@ -2174,7 +2174,7 @@ virt_viewer_app_local_command_line (GApplication *gapp,
|
||||
|
||||
if (!g_option_context_parse_strv(context, args, &error)) {
|
||||
if (error != NULL) {
|
||||
g_printerr(_("%s\n"), error->message);
|
||||
g_printerr("%s\n", error->message);
|
||||
g_error_free(error);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user