From eb669ac7b08a49d3c6d67956edd2ebf52a77b44c Mon Sep 17 00:00:00 2001 From: JackDandy Date: Sat, 9 May 2015 16:49:10 +0100 Subject: [PATCH] Add newlines between error log lines on the Logs & Errors page. Removing the trailing newline meant central text newlines were also removed. --- CHANGES.md | 1 + gui/slick/interfaces/default/errorlogs.tmpl | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index f128578f..3e872eac 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -57,6 +57,7 @@ down select to dynamically hide/show the list of group names and change the resp insert space between items in the list of group names for readability. Notify user if an attempt to remove an in use group name is prevented. PEP8 and code cleanup to SG conventions. Removed fixed column widths, this means multiple groups have different column widths, but the original approach is preferred because fixed widths look bad with long show titles. +Add newlines between error log lines on the Logs & Errors page. ### 0.8.3 (2015-04-25 08:48:00 UTC) diff --git a/gui/slick/interfaces/default/errorlogs.tmpl b/gui/slick/interfaces/default/errorlogs.tmpl index c2121e1d..9b5a96bc 100644 --- a/gui/slick/interfaces/default/errorlogs.tmpl +++ b/gui/slick/interfaces/default/errorlogs.tmpl @@ -19,7 +19,7 @@
 #if $classes.ErrorViewer.errors
     #for $curError in sorted($classes.ErrorViewer.errors, key=lambda error: error.time, reverse=True)[:500]
-        #echo '%s %s' % ($curError.time, $curError.message)
+        #echo '%s %s\n' % ($curError.time, $curError.message)
     #end for
 #end if