# HG changeset patch # User Sylvain Thénault # Date 1258989493 -3600 # Node ID d197c07dcfe5f2461bf6c4c01f896e3c30474d14 # Parent a26f50cb7e704f6f7ddabada94079c4f4acf1ade fix https://www.logilab.net/cwo/ticket/481727 the pb lies more in sqlite library, since it's fixed by opening the sqlite database using an absolute path. diff -r a26f50cb7e70 -r d197c07dcfe5 devtools/__init__.py --- a/devtools/__init__.py Mon Nov 23 16:16:58 2009 +0100 +++ b/devtools/__init__.py Mon Nov 23 16:18:13 2009 +0100 @@ -338,6 +338,7 @@ import shutil # remove database file if it exists (actually I know driver == 'sqlite' :) dbfile = source['system']['db-name'] + source['system']['db-name'] = os.path.abspath(dbfile) cleanup_sqlite(dbfile) template = '%s-template' % dbfile if exists(template):