diff Lib/IMPL/Exception.pm @ 206:c8fe3f84feba

+IMPL::Web::Handlers::ViewSelector +IMPL::Web::Handlers::ErrorHandler *IMPL::Web::Handlers::RestController moved types mappings to ViewSelector
author sergey
date Thu, 03 May 2012 16:48:39 +0400
parents 6b1dda998839
children 6d8092d8ce1b
line wrap: on
line diff
--- a/Lib/IMPL/Exception.pm	Thu May 03 01:00:02 2012 +0400
+++ b/Lib/IMPL/Exception.pm	Thu May 03 16:48:39 2012 +0400
@@ -20,7 +20,7 @@
     my ($str,$level) = @_;
     $level ||= 0;
     $str = '' unless defined $str;
-    join ("\n", map( "\t"x$level.$_ , split(/\n/,$str) ) );
+    join ("\n", map( "    "x$level.$_ , split(/\n/,$str) ) );
 }
 
 sub new {