From 45abd95754cda2dced24093f2fa5370d0277fadf Mon Sep 17 00:00:00 2001 From: Olaf Alders Date: Tue, 7 Dec 2010 00:28:30 -0500 Subject: [PATCH] Fixes bug where Dancer cookbok pod was being skipped. --- lib/MetaCPAN/Dist.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/MetaCPAN/Dist.pm b/lib/MetaCPAN/Dist.pm index 96a869ece..ce8b2bd08 100644 --- a/lib/MetaCPAN/Dist.pm +++ b/lib/MetaCPAN/Dist.pm @@ -255,7 +255,8 @@ sub get_content { } say "got pod ok: $filename "; - delete $self->files->{$filename}; + # if this line is uncommented some pod, like Dancer docs gets skipped + #delete $self->files->{$filename}; return $content;