Merge pull request #6 from Krellan/master
Allow bsddb3 for compatibility with Gentoo
This commit is contained in:
commit
880662a31c
@ -19,7 +19,10 @@ missing_dep = []
|
|||||||
try:
|
try:
|
||||||
from bsddb.db import *
|
from bsddb.db import *
|
||||||
except:
|
except:
|
||||||
missing_dep.append('bsddb')
|
try:
|
||||||
|
from bsddb3.db import *
|
||||||
|
except:
|
||||||
|
missing_dep.append('bsddb')
|
||||||
|
|
||||||
import os, sys, time, re
|
import os, sys, time, re
|
||||||
pyw_filename = os.path.basename(__file__)
|
pyw_filename = os.path.basename(__file__)
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user