From 1a1f5bdad2e8ef25945e1559e5cba2696ced8f08 Mon Sep 17 00:00:00 2001 From: Steve Hancock Date: Sun, 19 Jun 2022 06:24:26 -0700 Subject: [PATCH] remove repeated comma --- pm2pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pm2pl b/pm2pl index 69929363..3e3af2c6 100755 --- a/pm2pl +++ b/pm2pl @@ -73,7 +73,7 @@ my $VERSION = get_version("lib/Perl/Tidy.pm"); my $outfile = "perltidy-$VERSION.pl"; if ( $Opts{o} ) { $outfile = $Opts{o} } my $fh_out; -open( $fh_out,, ">", $outfile ) or die "can't open file '$outfile' : $!\n"; +open( $fh_out, ">", $outfile ) or die "can't open file '$outfile' : $!\n"; print "Creating standalone perltidy script '$outfile' ...."; # first, open the script and copy the first (hash-bang) line -- 2.39.5