File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 1515# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
1616# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
1717#
18- # $Id: __init__.py,v 1.33 2004-11-29 07:34:39 anthonybaxter Exp $
18+ # $Id: __init__.py,v 1.34 2005-01-06 17:57:05 a1s Exp $
1919
2020'''Container for the hyperdb storage backend implementations.
2121'''
3030_modules = {
3131 'mysql' : 'MySQLdb' ,
3232 'postgresql' : 'psycopg' ,
33+ 'tsearch2' : 'psycopg' ,
3334}
3435
3536def get_backend (name ):
@@ -43,7 +44,7 @@ def get_backend(name):
4344 try :
4445 module = __import__ (module_name , vars )
4546 except :
46- # import failed, but in versions prior to 2.4, a (broken)
47+ # import failed, but in versions prior to 2.4, a (broken)
4748 # module is left in sys.modules and package globals;
4849 # subsequent imports would succeed and get the broken module.
4950 # This no longer happens in Python 2.4 and later.
You can’t perform that action at this time.
0 commit comments