In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/637174112f90e2e782037f7c706f86617e7df263?hp=040d2336f034a9225639af9abaec69a2e6da4301>

- Log -----------------------------------------------------------------
commit 637174112f90e2e782037f7c706f86617e7df263
Author: Father Chrysostomos <[email protected]>
Date:   Thu Jun 30 20:33:56 2011 -0700

    Stop podcheck.t --add-link from chomping a new line
    
        # The rest of the db file is output unchanged.
        my_safer_print($copy_fh, join "\n", @existing_issues);
    
    Well, actually that *does* change the file.  See the diff.
-----------------------------------------------------------------------

Summary of changes:
 t/porting/podcheck.t |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/t/porting/podcheck.t b/t/porting/podcheck.t
index 188e0c1..edc5874 100644
--- a/t/porting/podcheck.t
+++ b/t/porting/podcheck.t
@@ -962,7 +962,7 @@ if ($add_link) {
     }
 
     # The rest of the db file is output unchanged.
-    my_safer_print($copy_fh, join "\n", @existing_issues);
+    my_safer_print($copy_fh, join "\n", @existing_issues, "");
 
     close_and_rename($copy_fh);
     exit;

--
Perl5 Master Repository

Reply via email to