commit | a65e94c1bf30259e0367d136054328c107ff41da | [log] [tgz] |
---|---|---|
author | Collin Winter <collinw@gmail.com> | Wed Aug 22 21:45:20 2007 +0000 |
committer | Collin Winter <collinw@gmail.com> | Wed Aug 22 21:45:20 2007 +0000 |
tree | 3e52a58cdad9ac85144590d72641e2f065d7382e | |
parent | 865ea892018f4ff823496b2d0636c47c7ef06231 [diff] [blame] |
Convert raise statements in bsddb.
diff --git a/Lib/bsddb/db.py b/Lib/bsddb/db.py index 3bd0c8b..bd62e2b 100644 --- a/Lib/bsddb/db.py +++ b/Lib/bsddb/db.py
@@ -48,4 +48,4 @@ from _bsddb import __version__ if version() < (3, 2, 0): - raise ImportError, "correct BerkeleyDB symbols not found. Perhaps python was statically linked with an older version?" + raise ImportError("correct BerkeleyDB symbols not found. Perhaps python was statically linked with an older version?")