Subject: | Typo in error message |
[Dispatch] ERROR' for request '/app/some_runmode': Resource not found
for '/app/some_runmode'
The single quote after "ERROR" should not be there. Patch is attached.
Subject: | remove_single_quote_form_error.diff |
--- Dispatch.pm.org 2008-11-19 12:15:51.000000000 +0100
+++ Dispatch.pm 2008-11-19 12:15:57.000000000 +0100
@@ -426,7 +426,7 @@
my ($self, $e, $errdoc) = @_;
warn '[Dispatch] ERROR'
- . ($ENV{REQUEST_URI} ? "' for request '$ENV{REQUEST_URI}': " : ': ')
+ . ($ENV{REQUEST_URI} ? " for request '$ENV{REQUEST_URI}': " : ': ')
. $e->error . "\n";
my $errno =