[Bps-public-commit] r14801 - in Prophet/trunk: .

sartak at bestpractical.com sartak at bestpractical.com
Tue Aug 5 15:47:21 EDT 2008


Author: sartak
Date: Tue Aug  5 15:47:07 2008
New Revision: 14801

Modified:
   Prophet/trunk/   (props changed)
   Prophet/trunk/lib/Prophet/CLI/Command/History.pm

Log:
 r54105 at gorgoroth:  sartak | 2008-08-05 15:46:45 -0400
 Doh, the warning category is actually uninitialized


Modified: Prophet/trunk/lib/Prophet/CLI/Command/History.pm
==============================================================================
--- Prophet/trunk/lib/Prophet/CLI/Command/History.pm	(original)
+++ Prophet/trunk/lib/Prophet/CLI/Command/History.pm	Tue Aug  5 15:47:07 2008
@@ -21,7 +21,7 @@
         # separate each changeset
         print "Changeset ".$changeset->original_sequence_no .'@'.$changeset->original_source_uuid."\n";
 
-        no warnings 'undef'; # old changesets don't have creator
+        no warnings 'uninitialized'; # old changesets don't have creator
         print "by " . $changeset->creator . '@' . $changeset->original_source_uuid."\n";
         print "\n";
 



More information about the Bps-public-commit mailing list