[svk-commit] r2401 - trunk/utils

nobody at bestpractical.com nobody at bestpractical.com
Mon Jun 4 18:58:45 EDT 2007


Author: clkao
Date: Mon Jun  4 18:58:43 2007
New Revision: 2401

Modified:
   trunk/utils/pullyu

Log:
Fix pullyu for translating "included" records, which are replaced entries.

Reported by: David Morton <mortonda at dgrmm.net>


Modified: trunk/utils/pullyu
==============================================================================
--- trunk/utils/pullyu	(original)
+++ trunk/utils/pullyu	Mon Jun  4 18:58:43 2007
@@ -101,7 +101,8 @@
 
         };
         $translate->( $record );
-	$translate->( $record->{included} ) if $record->{included};
+        my $inc = $record->get_included_record;
+        $translate->( $inc ) if $inc;
 
         print $record->as_string;
     }


More information about the svk-commit mailing list