[Jifty-commit] r5510 - jifty/trunk/lib/Jifty

Jifty commits jifty-commit at lists.jifty.org
Mon Jun 16 08:36:59 EDT 2008


Author: ishigaki
Date: Mon Jun 16 08:36:58 2008
New Revision: 5510

Modified:
   jifty/trunk/lib/Jifty/Handle.pm

Log:
Jifty::Handle: colon is not allowed in a win32 path

Modified: jifty/trunk/lib/Jifty/Handle.pm
==============================================================================
--- jifty/trunk/lib/Jifty/Handle.pm	(original)
+++ jifty/trunk/lib/Jifty/Handle.pm	Mon Jun 16 08:36:58 2008
@@ -72,6 +72,7 @@
 
     if ( $db_config->{'Driver'} =~ /SQLite/ ) {
         $db = Jifty::Util->absolute_path($db);
+        $db =~ s{::}{-}g;  # ':' is not allowed in a Win32 path
     }
 
     return $db;


More information about the Jifty-commit mailing list