diff options
author | Collin Winter <collinw@gmail.com> | 2007-08-22 21:45:20 +0000 |
---|---|---|
committer | Collin Winter <collinw@gmail.com> | 2007-08-22 21:45:20 +0000 |
commit | a65e94c1bf30259e0367d136054328c107ff41da (patch) | |
tree | 3e52a58cdad9ac85144590d72641e2f065d7382e /Lib/bsddb/db.py | |
parent | 865ea892018f4ff823496b2d0636c47c7ef06231 (diff) | |
download | cpython-git-a65e94c1bf30259e0367d136054328c107ff41da.tar.gz |
Convert raise statements in bsddb.
Diffstat (limited to 'Lib/bsddb/db.py')
-rw-r--r-- | Lib/bsddb/db.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/bsddb/db.py b/Lib/bsddb/db.py index 3bd0c8ba4e..bd62e2bb2d 100644 --- a/Lib/bsddb/db.py +++ b/Lib/bsddb/db.py @@ -48,4 +48,4 @@ else: 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?") |