[libconfig-model-dpkg-perl] 04/04: Patch backend: leave a space after colon. I.e. 'Field: foo'

dod at debian.org dod at debian.org
Sun Apr 13 18:04:42 UTC 2014


This is an automated email from the git hooks/post-receive script.

dod pushed a commit to branch master
in repository libconfig-model-dpkg-perl.

commit 3f8d1e436b4d3146d03fd3c03d8806c27babdb0f
Author: Dominique Dumont <dod at debian.org>
Date:   Sun Apr 13 20:04:07 2014 +0200

    Patch backend: leave a space after colon. I.e. 'Field: foo'
---
 lib/Config/Model/Backend/Dpkg/Patch.pm | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/lib/Config/Model/Backend/Dpkg/Patch.pm b/lib/Config/Model/Backend/Dpkg/Patch.pm
index a066cce..d677ebd 100644
--- a/lib/Config/Model/Backend/Dpkg/Patch.pm
+++ b/lib/Config/Model/Backend/Dpkg/Patch.pm
@@ -150,11 +150,11 @@ sub write {
         foreach my $v (@v) {
             # say "write $elt -> $v" ;
             next unless defined $v and $v;
-        
+
             if ($elt eq 'Synopsis') {
                 my $long_description = $node->fetch_element_value('Description') ;
                 $v .= "\n" . $long_description if $long_description ;
-                $io->print("Description:");
+                $io->print("Description: ");
                 $self->write_dpkg_text($io,$v) ;
             }
             elsif ($elt eq 'Description') { } # done in Synopsis
@@ -162,7 +162,7 @@ sub write {
                 $io->print($node->fetch_element_value('diff')) ;
             }
             else {
-                $io->print("$elt:");
+                $io->print("$elt: ");
                 $self->write_dpkg_text($io,$v) ;
             }
         }

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libconfig-model-dpkg-perl.git



More information about the Pkg-perl-cvs-commits mailing list