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,7 +19,10 @@ missing_dep = []
try:
from bsddb.db import *
except:
missing_dep.append('bsddb')
try:
from bsddb3.db import *
except:
missing_dep.append('bsddb')
import os, sys, time, re
pyw_filename = os.path.basename(__file__)