First cut at enclosure support
[catagits/XML-Feed.git] / lib / XML / Feed.pm
index 02d1135..b70b1bc 100644 (file)
@@ -12,7 +12,7 @@ use Module::Pluggable search_path => "XML::Feed::Format",
                       require     => 1,
                       sub_name    => 'formatters';
 
-our $VERSION = '0.3';
+our $VERSION = '0.40';
 our @formatters;
 BEGIN {
        @formatters = __PACKAGE__->formatters;
@@ -86,7 +86,6 @@ sub identify_format {
                return $name if eval { $class->identify(\$tmp) };
                return $feed->error($@) if $@;
        } 
-       die "$$xml\n";
        return $feed->error("Cannot detect feed type");
 }