summaryrefslogtreecommitdiff
path: root/FS/FS/agent.pm
diff options
context:
space:
mode:
authorivan <ivan>2006-03-08 08:21:37 +0000
committerivan <ivan>2006-03-08 08:21:37 +0000
commit5809a99d862a6bd0da6742479f18728aae8216a2 (patch)
treebfc1a4d2ee45e6cc76cb569c0652a3439eeb4d3a /FS/FS/agent.pm
parent02ffd747f8cbc05815c0d96f437c507cfac04ba6 (diff)
add space in error msg
Diffstat (limited to 'FS/FS/agent.pm')
-rw-r--r--FS/FS/agent.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/agent.pm b/FS/FS/agent.pm
index 83f0ce5..849dafa 100644
--- a/FS/FS/agent.pm
+++ b/FS/FS/agent.pm
@@ -195,7 +195,7 @@ sub num_sql {
my( $self, $sql ) = @_;
my $statement = "SELECT COUNT(*) FROM cust_main WHERE agentnum = ? AND $sql";
my $sth = dbh->prepare($statement) or die dbh->errstr." preparing $statement";
- $sth->execute($self->agentnum) or die $sth->errstr. "executing $statement";
+ $sth->execute($self->agentnum) or die $sth->errstr. " executing $statement";
$sth->fetchrow_arrayref->[0];
}