Return-Path: Delivered-To: apmail-httpd-test-cvs-archive@httpd.apache.org Received: (qmail 39380 invoked by uid 500); 30 Apr 2003 03:25:15 -0000 Mailing-List: contact test-cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: test-dev@httpd.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list test-cvs@httpd.apache.org Received: (qmail 39369 invoked from network); 30 Apr 2003 03:25:14 -0000 Date: 30 Apr 2003 03:25:13 -0000 Message-ID: <20030430032513.36588.qmail@icarus.apache.org> From: stas@apache.org To: httpd-test-cvs@apache.org Subject: cvs commit: httpd-test/perl-framework/Apache-Test/lib/Apache TestConfig.pm X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N stas 2003/04/29 20:25:12 Modified: perl-framework/Apache-Test/lib/Apache TestConfig.pm Log: align the columns in the usage output Revision Changes Path 1.158 +1 -1 httpd-test/perl-framework/Apache-Test/lib/Apache/TestConfig.pm Index: TestConfig.pm =================================================================== RCS file: /home/cvs/httpd-test/perl-framework/Apache-Test/lib/Apache/TestConfig.pm,v retrieving revision 1.157 retrieving revision 1.158 diff -u -r1.157 -r1.158 --- TestConfig.pm 29 Apr 2003 03:44:23 -0000 1.157 +++ TestConfig.pm 30 Apr 2003 03:25:12 -0000 1.158 @@ -64,7 +64,7 @@ sub usage { for my $hash (\%Usage) { for (sort keys %$hash){ - printf " -%-16s %s\n", $_, $hash->{$_}; + printf " -%-18s %s\n", $_, $hash->{$_}; } } }