From b0cf7baefdf8ce336edf9adeec1362f276b2bd4c Mon Sep 17 00:00:00 2001 From: AsciiWolf Date: Sat, 11 Nov 2017 15:46:28 +0100 Subject: [PATCH] Add colon to the Uninstalling string Closes: #1163 Approved by: alexlarsson --- app/flatpak-builtins-uninstall.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/flatpak-builtins-uninstall.c b/app/flatpak-builtins-uninstall.c index eada9663..d574e686 100644 --- a/app/flatpak-builtins-uninstall.c +++ b/app/flatpak-builtins-uninstall.c @@ -156,7 +156,7 @@ flatpak_builtin_uninstall (int argc, char **argv, GCancellable *cancellable, GEr { const char *ref = (char *)g_ptr_array_index (uninstall_refs, i); const char *pref = strchr (ref, '/') + 1; - g_print (_("Uninstalling %s\n"), pref); + g_print (_("Uninstalling: %s\n"), pref); if (!flatpak_dir_uninstall (dir, ref, flags, cancellable, error)) return FALSE;