From 842b7a176985f4c1215b72f2eab7527ccbb8fbdc Mon Sep 17 00:00:00 2001 From: Florian Schmidt Date: Sun, 16 Apr 2017 01:02:58 +0200 Subject: [PATCH] exception: Add newline at the end of a debugging line for CLI users Bug: T162315 Change-Id: Ia2963fa298ab0e4782ef823e7f53322cd6a9c99b --- includes/exception/MWExceptionRenderer.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/exception/MWExceptionRenderer.php b/includes/exception/MWExceptionRenderer.php index a569bcd808..1ef05ed95c 100644 --- a/includes/exception/MWExceptionRenderer.php +++ b/includes/exception/MWExceptionRenderer.php @@ -288,7 +288,7 @@ class MWExceptionRenderer { $vars[] = '$wgShowDBErrorBacktrace = true;'; } $vars = implode( ' and ', $vars ); - return "Set $vars at the bottom of LocalSettings.php to show detailed debugging information"; + return "Set $vars at the bottom of LocalSettings.php to show detailed debugging information\n"; } /** -- 2.20.1