all your tabs belong to spaces
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Storage / DBI / Replicated / Replicant.pm
index e1e7f8d..7449146 100644 (file)
@@ -58,12 +58,11 @@ advice iof the _query_start method to add more debuggin
 =cut
 
 around '_query_start' => sub {
-       my ($method, $self, $sql, @bind) = @_;
-       my $dsn = $self->connect_info->[0];
-       $self->$method("DSN: $dsn SQL: $sql", @bind);
+    my ($method, $self, $sql, @bind) = @_;
+    my $dsn = $self->connect_info->[0];
+    $self->$method("DSN: $dsn SQL: $sql", @bind);
 };
 
-
 =head1 AUTHOR
 
 John Napiorkowski <john.napiorkowski@takkle.com>