summaryrefslogtreecommitdiffstats
path: root/pym/portage/dbapi/virtual.py
diff options
context:
space:
mode:
authorMarius Mauch <genone@gentoo.org>2007-02-11 00:57:06 +0000
committerMarius Mauch <genone@gentoo.org>2007-02-11 00:57:06 +0000
commit35b4f0c8d45852994a0787cfe37803b8583ad88c (patch)
tree5d2445ba5a000b8e0ff1ee756232bfe8cd43a598 /pym/portage/dbapi/virtual.py
parent73487af3929c674e2a60ad878da6a5e7c5d70fa3 (diff)
downloadportage-35b4f0c8d45852994a0787cfe37803b8583ad88c.tar.gz
portage-35b4f0c8d45852994a0787cfe37803b8583ad88c.tar.bz2
portage-35b4f0c8d45852994a0787cfe37803b8583ad88c.zip
Use the real symbols in import statements, not the references in __init__.py
svn path=/main/trunk/; revision=5953
Diffstat (limited to 'pym/portage/dbapi/virtual.py')
-rw-r--r--pym/portage/dbapi/virtual.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/pym/portage/dbapi/virtual.py b/pym/portage/dbapi/virtual.py
index 0becd1e6c..760bf81a0 100644
--- a/pym/portage/dbapi/virtual.py
+++ b/pym/portage/dbapi/virtual.py
@@ -1,6 +1,7 @@
-from portage import cpv_getkey
from portage.dbapi import dbapi
+from portage import cpv_getkey
+
class fakedbapi(dbapi):
"This is a dbapi to use for the emptytree function. It's empty, but things can be added to it."
def __init__(self, settings=None):