Merge pull request #6 from Krellan/master

Allow bsddb3 for compatibility with Gentoo
This commit is contained in:
jackjack-jj 2014-01-21 02:57:26 -08:00
commit 880662a31c

View File

@ -19,6 +19,9 @@ missing_dep = []
try: try:
from bsddb.db import * from bsddb.db import *
except: except:
try:
from bsddb3.db import *
except:
missing_dep.append('bsddb') missing_dep.append('bsddb')
import os, sys, time, re import os, sys, time, re