[Debian-l10n-commits] r1044 - /dl10n/trunk/dl10n-nmu

nekral-guest at users.alioth.debian.org nekral-guest at users.alioth.debian.org
Sat May 31 22:41:42 UTC 2008


Author: nekral-guest
Date: Sat May 31 22:41:42 2008
New Revision: 1044

URL: http://svn.debian.org/wsvn/?sc=1&rev=1044
Log:
Do not print to STDERR for non-error messages.

Modified:
    dl10n/trunk/dl10n-nmu

Modified: dl10n/trunk/dl10n-nmu
URL: http://svn.debian.org/wsvn/dl10n/trunk/dl10n-nmu?rev=1044&op=diff
==============================================================================
--- dl10n/trunk/dl10n-nmu (original)
+++ dl10n/trunk/dl10n-nmu Sat May 31 22:41:42 2008
@@ -24,10 +24,10 @@
     'host' => "bts2ldap.debian.net",
     'port' => "10101" };
 
-print STDERR "Read the database...";
+print "Read the database...";
 my $data = Debian::L10n::Db->new();
 $data->read($DB_FILE);
-print STDERR " done.\n";
+print " done.\n";
 
 my $packages = {};
 my $bugs = {};
@@ -38,7 +38,7 @@
 $comments->{nodebconf} = "not using debconf";
 
 
-print STDERR "Starting ldap query... ";
+print "Starting ldap query... ";
 my $ldap = Net::LDAP->new($ldapserver->{'host'},
     'port' => $ldapserver->{'port'})
            or die "failed: $!\n";
@@ -47,7 +47,7 @@
     base => "dc=current,dc=bugs,dc=debian,dc=org",
     filter => "(&(!(debbugsState=done))(debbugsTag=*l10n*))");
 $ldap->unbind;
-print STDERR "done.\n";
+print "done.\n";
 
 my $pop = {};
 




More information about the Debian-l10n-commits mailing list