[svk-commit] r2456 - branches/i18n-fixes/lib/SVK/Command
    nobody at bestpractical.com 
    nobody at bestpractical.com
       
    Mon Jul 16 05:03:49 EDT 2007
    
    
  
Author: clsung
Date: Mon Jul 16 05:03:26 2007
New Revision: 2456
Modified:
   branches/i18n-fixes/lib/SVK/Command/Info.pm
Log:
- reformat_svn_date( "%F", $date ) will have %F passed to 
  Date::Format::time2str() when IS_WIN32
  - which does not recognize %F (equivalent to %Y-%m-%d).
- so use %Y-%m-%d instead.
Modified: branches/i18n-fixes/lib/SVK/Command/Info.pm
==============================================================================
--- branches/i18n-fixes/lib/SVK/Command/Info.pm	(original)
+++ branches/i18n-fixes/lib/SVK/Command/Info.pm	Mon Jul 16 05:03:26 2007
@@ -103,7 +103,7 @@
             = $target->root->fs->revision_prop( $lastchanged, 'svn:date' );
         print loc(
             "Last Changed Date: %1\n",
-            reformat_svn_date( "%F", $date )
+            reformat_svn_date( "%Y-%m-%d", $date )
         );
     }
 
    
    
More information about the svk-commit
mailing list