Code

default value for GADFLY_DATABASE
authorrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Wed, 11 Sep 2002 01:20:09 +0000 (01:20 +0000)
committerrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Wed, 11 Sep 2002 01:20:09 +0000 (01:20 +0000)
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@1130 57a73879-2fb5-44c3-a270-3262357dd7e2

roundup/backends/back_gadfly.py

index 8b01acc1cefdade654fafa7302e93c27084253da..7bde8f77cd2ad3e554fd47b72ab964f9dacfbce8 100644 (file)
@@ -1,4 +1,4 @@
-# $Id: back_gadfly.py,v 1.15 2002-09-10 00:11:50 richard Exp $
+# $Id: back_gadfly.py,v 1.16 2002-09-11 01:20:09 richard Exp $
 __doc__ = '''
 About Gadfly
 ============
@@ -82,7 +82,7 @@ class Database(FileStorage, hyperdb.Database, roundupdb.Database):
         # additional transaction support for external files and the like
         self.transactions = []
 
-        db = config.GADFLY_DATABASE
+        db = getattr(config, 'GADFLY_DATABASE', ('database', self.dir))
         if len(db) == 2:
             # ensure files are group readable and writable
             os.umask(0002)