The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
Changes 03
META.json 22
META.yml 22
Simple.pm 22
4 files changed (This is a version diff) 69
@@ -1,3 +1,6 @@
+1.2206: Thu Dec 18 2014
+   - minor debug issue
+
 1.2205: Sat May 17 2014
    - Patch from Rob Hoelz to fix bug/docbug regarding port numbers.
 
@@ -4,7 +4,7 @@
       "Paul Miller <jettero@cpan.org>"
    ],
    "dynamic_config" : 1,
-   "generated_by" : "ExtUtils::MakeMaker version 6.98, CPAN::Meta::Converter version 2.140640",
+   "generated_by" : "ExtUtils::MakeMaker version 7.04, CPAN::Meta::Converter version 2.143240",
    "keywords" : [
       "imap",
       "simple"
@@ -49,5 +49,5 @@
          "url" : "http://github.com/jettero/net--imap--simple"
       }
    },
-   "version" : "1.2205"
+   "version" : "1.2206"
 }
@@ -7,7 +7,7 @@ build_requires:
 configure_requires:
   ExtUtils::MakeMaker: '0'
 dynamic_config: 1
-generated_by: 'ExtUtils::MakeMaker version 6.98, CPAN::Meta::Converter version 2.140640'
+generated_by: 'ExtUtils::MakeMaker version 7.04, CPAN::Meta::Converter version 2.143240'
 keywords:
   - imap
   - simple
@@ -27,4 +27,4 @@ requires:
   perl: '5.008'
 resources:
   repository: http://github.com/jettero/net--imap--simple
-version: '1.2205'
+version: '1.2206'
@@ -9,7 +9,7 @@ use IO::Socket;
 use IO::Select;
 use Net::IMAP::Simple::PipeSocket;
 
-our $VERSION = "1.2205";
+our $VERSION = "1.2206";
 
 BEGIN {
     # I'd really rather the pause/cpan indexers miss this "package"
@@ -1169,7 +1169,7 @@ sub _read_multiline {
     }
 
     if( $list and $lines[-1] !~ m/\)[\x0d\x0a\s]*$/ ) {
-        $self->_debug( caller, __LINE__, '_read_multiline', "Looking for ending parenthsis match..." );
+        $self->_debug( caller, __LINE__, '_read_multiline', "Looking for ending parenthesis match..." ) if $self->{debug};
 
         my $unmatched = 1;
         while( $unmatched ) {