summaryrefslogtreecommitdiffstats
path: root/pym/cache/sqlite.py
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2006-09-18 03:54:07 +0000
committerZac Medico <zmedico@gentoo.org>2006-09-18 03:54:07 +0000
commit6d59eb3641681aeb06a6ecee7582a286f47a0a91 (patch)
tree37ef69ae3924a312da74f9c263c76faba195333f /pym/cache/sqlite.py
parente628db83f211c9d922ff4aa4da09e822cb3d883f (diff)
downloadportage-6d59eb3641681aeb06a6ecee7582a286f47a0a91.tar.gz
portage-6d59eb3641681aeb06a6ecee7582a286f47a0a91.tar.bz2
portage-6d59eb3641681aeb06a6ecee7582a286f47a0a91.zip
Replace relative imports with absolute imports for forward compatibility with python 2.6.
svn path=/main/trunk/; revision=4470
Diffstat (limited to 'pym/cache/sqlite.py')
-rw-r--r--pym/cache/sqlite.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/pym/cache/sqlite.py b/pym/cache/sqlite.py
index 4863b5997..78d4cd649 100644
--- a/pym/cache/sqlite.py
+++ b/pym/cache/sqlite.py
@@ -2,11 +2,11 @@
# Distributed under the terms of the GNU General Public License v2
# $Header: $
-import fs_template
-import cache_errors
+from cache import fs_template
+from cache import cache_errors
import errno, os, stat
-from mappings import LazyLoad, ProtectedDict
-from template import reconstruct_eclasses
+from cache.mappings import LazyLoad, ProtectedDict
+from cache.template import reconstruct_eclasses
from portage_util import writemsg, apply_secpass_permissions
from portage_data import portage_gid
from pysqlite2 import dbapi2 as db_module