summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 10aefcb)
raw | patch | inline | side by side (parent: 10aefcb)
author | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Thu, 24 Apr 2003 06:58:05 +0000 (06:58 +0000) | ||
committer | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Thu, 24 Apr 2003 06:58:05 +0000 (06:58 +0000) |
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@1678 57a73879-2fb5-44c3-a270-3262357dd7e2
roundup/backends/__init__.py | patch | blob | history |
index 48affd1151b849ef5a325b07d2916ed923cd6a4b..16c16f2a2a6548f27dd17b3bbaf17878927b6b1b 100644 (file)
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
#
-# $Id: __init__.py,v 1.22 2003-03-18 00:50:24 richard Exp $
+# $Id: __init__.py,v 1.23 2003-04-24 06:55:24 richard Exp $
''' Container for the hyperdb storage backend implementations.
try:
import bsddb
except ImportError, message:
- if str(message) != 'No module named bsddb': raise
+ if not str(message).startswith('No module named'): raise
else:
import back_bsddb
bsddb = back_bsddb