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 b03a10c commit 9c99083Copy full SHA for 9c99083
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.22 2003-03-18 00:50:24 richard Exp $
+# $Id: __init__.py,v 1.23 2003-04-24 06:55:24 richard Exp $
19
20
''' Container for the hyperdb storage backend implementations.
21
@@ -63,7 +63,7 @@
63
try:
64
import bsddb
65
except ImportError, message:
66
- if str(message) != 'No module named bsddb': raise
+ if not str(message).startswith('No module named'): raise
67
else:
68
import back_bsddb
69
bsddb = back_bsddb
0 commit comments