[Catalyst-commits] r8984 - in trunk/Catalyst-Model-DBIC-Schema: . lib/Catalyst/Model/DBIC

gphat at dev.catalyst.perl.org gphat at dev.catalyst.perl.org
Wed Dec 31 13:19:29 GMT 2008


Author: gphat
Date: 2008-12-31 13:19:29 +0000 (Wed, 31 Dec 2008)
New Revision: 8984

Modified:
   trunk/Catalyst-Model-DBIC-Schema/Changes
   trunk/Catalyst-Model-DBIC-Schema/lib/Catalyst/Model/DBIC/Schema.pm
Log:
Fix oddly formatted error message (and bump version)


Modified: trunk/Catalyst-Model-DBIC-Schema/Changes
===================================================================
--- trunk/Catalyst-Model-DBIC-Schema/Changes	2008-12-30 15:16:38 UTC (rev 8983)
+++ trunk/Catalyst-Model-DBIC-Schema/Changes	2008-12-31 13:19:29 UTC (rev 8984)
@@ -1,5 +1,8 @@
 Revision history for Perl extension Catalyst::Model::DBIC::Schema
 
+0.22  Pending
+		- Fix oddly formatted error message.
+
 0.21  Fri Aug 22 00:26:05 UTC 2008
         - doc fix (RT #31848)
         - connection_info can be just the DSN instead of an arrayref

Modified: trunk/Catalyst-Model-DBIC-Schema/lib/Catalyst/Model/DBIC/Schema.pm
===================================================================
--- trunk/Catalyst-Model-DBIC-Schema/lib/Catalyst/Model/DBIC/Schema.pm	2008-12-30 15:16:38 UTC (rev 8983)
+++ trunk/Catalyst-Model-DBIC-Schema/lib/Catalyst/Model/DBIC/Schema.pm	2008-12-31 13:19:29 UTC (rev 8984)
@@ -3,7 +3,7 @@
 use strict;
 use warnings;
 
-our $VERSION = '0.21';
+our $VERSION = '0.22';
 
 use base qw/Catalyst::Model Class::Accessor::Fast Class::Data::Accessor/;
 use NEXT;
@@ -301,8 +301,8 @@
         }
         else {
             croak "Either ->config->{connect_info} must be defined for $class"
-                  . " or $schema_class must have connect info defined on it"
-		  . "Here's what we got:\n"
+                  . " or $schema_class must have connect info defined on it."
+		  . " Here's what we got:\n"
 		  . Dumper($self);
         }
     }




More information about the Catalyst-commits mailing list