We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9fa9c56 commit c326a75Copy full SHA for c326a75
roundup/backends/__init__.py
@@ -15,7 +15,7 @@
15
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
16
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
17
#
18
-# $Id: __init__.py,v 1.20 2002-10-07 00:52:51 richard Exp $
+# $Id: __init__.py,v 1.20.2.1 2003-04-24 06:58:05 richard Exp $
19
20
''' Container for the hyperdb storage backend implementations.
21
@@ -68,7 +68,7 @@
68
try:
69
import bsddb
70
except ImportError, message:
71
- if str(message) != 'No module named bsddb': raise
+ if not str(message).startswith('No module named'): raise
72
else:
73
import back_bsddb
74
bsddb = back_bsddb
0 commit comments