Merge pull request #6 from Krellan/master
Allow bsddb3 for compatibility with Gentoo
This commit is contained in:
commit
880662a31c
@ -18,6 +18,9 @@ missing_dep = []
|
|||||||
|
|
||||||
try:
|
try:
|
||||||
from bsddb.db import *
|
from bsddb.db import *
|
||||||
|
except:
|
||||||
|
try:
|
||||||
|
from bsddb3.db import *
|
||||||
except:
|
except:
|
||||||
missing_dep.append('bsddb')
|
missing_dep.append('bsddb')
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user