]> Sergey Matveev's repositories - public-inbox.git/blobdiff - script/public-inbox-edit
drop needless `eval {}' around Config->new
[public-inbox.git] / script / public-inbox-edit
index 28b1b5e827a38abc9069a00e8df6db23651d6689..42f914a808d73413f12b7c3499b3b40c862c1f2c 100755 (executable)
@@ -22,7 +22,7 @@ my @opt = qw(mid|m=s file|F=s raw);
 GetOptions($opt, @PublicInbox::AdminEdit::OPT, @opt) or
        die "bad command-line args\n$usage\n";
 
-my $cfg = eval { PublicInbox::Config->new };
+my $cfg = PublicInbox::Config->new;
 my $editor = $ENV{MAIL_EDITOR}; # e.g. "mutt -f"
 unless (defined $editor) {
        my $k = 'publicinbox.mailEditor';