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

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


Author: sartak
Date: Tue Aug  5 15:49:46 2008
New Revision: 14802

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

Log:
 r54107 at gorgoroth:  sartak | 2008-08-05 15:49:34 -0400
 Display changeset create time in history


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:49:46 2008
@@ -22,12 +22,15 @@
         print "Changeset ".$changeset->original_sequence_no .'@'.$changeset->original_source_uuid."\n";
 
         no warnings 'uninitialized'; # old changesets don't have creator
-        print "by " . $changeset->creator . '@' . $changeset->original_source_uuid."\n";
-        print "\n";
+        print "by "
+            . $changeset->creator . '@' . $changeset->original_source_uuid
+            ." at " . $changeset->created . "\n";
 
         for my $prop_change (@prop_changes) {
             print "  ".$prop_change->summary, "\n";
         }
+
+        print "\n";
     }
 }
 



More information about the Bps-public-commit mailing list