[recipes] Cosmetic fixes



commit a955796706657bbc02fb647d9a8d44af564e5cdb
Author: Matthias Clasen <mclasen redhat com>
Date:   Mon Jan 9 22:18:31 2017 -0500

    Cosmetic fixes
    
    Remove some superfluous newlines from messages.

 src/gr-recipe-exporter.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/src/gr-recipe-exporter.c b/src/gr-recipe-exporter.c
index 5c8f348..9fd9e68 100644
--- a/src/gr-recipe-exporter.c
+++ b/src/gr-recipe-exporter.c
@@ -425,13 +425,13 @@ export_dialog_response (GtkWidget        *dialog,
                         GrRecipeExporter *exporter)
 {
         if (response_id == GTK_RESPONSE_CANCEL) {
-                g_message ("not exporting now\n");
+                g_message ("not exporting now");
         }
         else if (response_id == GTK_RESPONSE_OK) {
                 g_autofree char *dir = NULL;
                 g_autofree char *path = NULL;
 
-                g_message ("exporting %d recipes now\n", g_list_length (exporter->recipes));
+                g_message ("exporting %d recipes now", g_list_length (exporter->recipes));
                 dir = g_dir_make_tmp ("recipesXXXXXX", NULL);
                 path = g_build_filename (dir, "recipes.tar.gz", NULL);
                 exporter->output = g_file_new_for_path (path);


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]