]> Sergey Matveev's repositories - public-inbox.git/blobdiff - script/public-inbox-convert
drop needless `eval {}' around Config->new
[public-inbox.git] / script / public-inbox-convert
index e13c13f44153ed1f29082a10f80317c229574422..4c220b364bf30417c0fd745b663887b3adcc7f4a 100755 (executable)
@@ -24,7 +24,7 @@ my $old_dir = shift(@ARGV) or die $usage;
 my $new_dir = shift(@ARGV) or die $usage;
 die "$new_dir exists\n" if -d $new_dir;
 die "$old_dir not a directory\n" unless -d $old_dir;
-my $config = eval { PublicInbox::Config->new };
+my $config = PublicInbox::Config->new;
 $old_dir = abs_path($old_dir);
 my $old;
 if ($config) {