Code

relfected the move to roundup/backends
authorrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Mon, 23 Jul 2001 06:25:50 +0000 (06:25 +0000)
committerrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Mon, 23 Jul 2001 06:25:50 +0000 (06:25 +0000)
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@47 57a73879-2fb5-44c3-a270-3262357dd7e2

roundup/templates/extended/dbinit.py

index f20383698a7b429157dc81b9156bd2729a3344aa..8a526e05ead8e19cd0d5ae9225a4f5254a559367 100644 (file)
@@ -1,13 +1,13 @@
-# $Id: dbinit.py,v 1.1 2001-07-23 04:33:21 anthonybaxter Exp $
+# $Id: dbinit.py,v 1.2 2001-07-23 06:25:50 richard Exp $
 
 import instance_config
-from roundup import hyperdb, hyper_bsddb, roundupdb, cgi_client, mailgw 
+from roundup import hyperdb, backends.bsddb, roundupdb, cgi_client, mailgw 
 
 from roundup.roundupdb import Class, FileClass
 import os
 
 
-class Database(roundupdb.Database, hyper_bsddb.Database):
+class Database(roundupdb.Database, backends.bsddb.Database):
     ''' Creates a hybrid database from: 
          . the base Database class given in hyperdb (basic functionlity) 
          . the BSDDB implementation in hyperdb_bsddb 
@@ -172,6 +172,9 @@ def init(adminpw):
 
 #
 # $Log: not supported by cvs2svn $
+# Revision 1.1  2001/07/23 04:33:21  anthonybaxter
+# split __init__.py into 2. dbinit and instance_config.
+#
 # Revision 1.1  2001/07/23 03:50:46  anthonybaxter
 # moved templates to proper location
 #