Date: | Fri, 30 May 2003 11:47:04 +1000 |
From: | Andrew Bramble <andrewb [...] omnilab.com.au> |
To: | bug-Mail-IMAPClient [...] rt.cpan.org |
Subject: | One character typo in Mail::IMAPClient::migrate _debug call line 976 |
Hello,
I have stumbled on a typo in Mail::IMAPClient's migrate method. This
produces one warning per migrated message due to a plus in place of a
dot at line 976.
$peer->_debug("Chunk $chunkCount: " +
"Wrote $wroteSoFar bytes (out of $chunk)\n");
}
which works much nicer as
$peer->_debug("Chunk $chunkCount: " .
"Wrote $wroteSoFar bytes (out of $chunk)\n");
}
Thankyou for Mail::IMAPClient
Andrew Bramble
omnilabgroup