Update of /cvsroot/module-build/Module-Build/lib/Module/Build
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9199/lib/Module/Build
Modified Files:
PodParser.pm
Log Message:
Don't die when an author can't be determined
Index: PodParser.pm
===================================================================
RCS file: /cvsroot/module-build/Module-Build/lib/Module/Build/PodParser.pm,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- PodParser.pm 13 May 2004 04:48:56 -0000 1.5
+++ PodParser.pm 8 Jul 2005 01:29:22 -0000 1.6
@@ -66,7 +66,7 @@
$self->parse_from_filehandle($self->{fh});
- return $self->{author};
+ return $self->{author} || [];
}
################## Pod::Parser overrides ###########
|