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

sartak at bestpractical.com sartak at bestpractical.com
Tue Aug 5 15:19:09 EDT 2008


Author: sartak
Date: Tue Aug  5 15:18:19 2008
New Revision: 14799

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

Log:
 r54100 at gorgoroth:  sartak | 2008-08-05 15:18:10 -0400
 Avoid undef warnings when we have no creator


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:18:19 2008
@@ -20,6 +20,8 @@
 
         # separate each changeset
         print "Changeset ".$changeset->original_sequence_no .'@'.$changeset->original_source_uuid."\n";
+
+        no warnings 'undef'; # 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