summaryrefslogtreecommitdiff
path: root/Echolot/Storage/File.pm
diff options
context:
space:
mode:
authorPeter Palfrader <peter@palfrader.org>2003-02-14 04:53:57 +0000
committerPeter Palfrader <peter@palfrader.org>2003-02-14 04:53:57 +0000
commitacbd6b07aa62bac5771dd2c6fd7f2d3eb8cf2bfe (patch)
treed2787829ec44991ccb8865b211761ada07d1bece /Echolot/Storage/File.pm
parentebd569ea272e69b0a3d17999e8fdb87f056b5355 (diff)
Fix number of args to Log::notice (a , was there instead of a .)
Diffstat (limited to 'Echolot/Storage/File.pm')
-rw-r--r--Echolot/Storage/File.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/Echolot/Storage/File.pm b/Echolot/Storage/File.pm
index 21c13ea..46b4002 100644
--- a/Echolot/Storage/File.pm
+++ b/Echolot/Storage/File.pm
@@ -1,7 +1,7 @@
package Echolot::Storage::File;
# (c) 2002 Peter Palfrader <peter@palfrader.org>
-# $Id: File.pm,v 1.46 2003/02/12 20:38:04 weasel Exp $
+# $Id: File.pm,v 1.47 2003/02/14 04:53:57 weasel Exp $
#
=pod
@@ -664,7 +664,7 @@ sub commit_prospective_address($) {
my %unique;
@adds = grep { ! $unique{$_}++; } @adds;
if (scalar @adds >= Echolot::Config::get()->{'reliable_auto_add_min'} ) {
- Echolot::Log::notice("$addr is recommended by ". join(', ', @adds),".");
+ Echolot::Log::notice("$addr is recommended by ". join(', ', @adds) . ".");
$self->add_address($addr);
delete $self->{'METADATA'}->{'prospective_addresses'}->{$addr};
next;