Mercurial > p > roundup > code
diff roundup/backends/__init__.py @ 1528:96cd422532ef
bye bye gadfly - you served your purpose well [SF#701127]
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Tue, 18 Mar 2003 00:50:24 +0000 |
| parents | 4884fb0860f9 |
| children | 7625bf9feec1 |
line wrap: on
line diff
--- a/roundup/backends/__init__.py Tue Mar 18 00:37:25 2003 +0000 +++ b/roundup/backends/__init__.py Tue Mar 18 00:50:24 2003 +0000 @@ -15,7 +15,7 @@ # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. # -# $Id: __init__.py,v 1.21 2003-01-12 23:53:19 richard Exp $ +# $Id: __init__.py,v 1.22 2003-03-18 00:50:24 richard Exp $ ''' Container for the hyperdb storage backend implementations. @@ -43,20 +43,6 @@ __all__.append('anydbm') try: - import gadfly - import gadfly.client -except ImportError, message: - if str(message) == 'No module named client': - # don't keep the old gadfly around - del gadfly - elif str(message) != 'No module named gadfly': - raise -else: - import back_gadfly - gadfly = back_gadfly - __all__.append('gadfly') - -try: import MySQLdb except ImportError, message: if str(message) != 'No module named MySQLdb': raise
