Include dbm.dumb for windows build (#490)

cx_Freeze was only including dbm.ndbm which is not available on windows.
This should fix hsoft/dupeguru#474
This commit is contained in:
Andrew Senetar 2018-02-26 08:42:14 -06:00 committed by Virgil Dupras
parent f349f6a9b9
commit 6c6271bc69
1 changed files with 1 additions and 1 deletions

View File

@ -143,7 +143,7 @@ def package_windows():
'build_exe': {
'build_exe': buildpath,
'excludes': [],
'includes': ['atexit'],
'includes': ['atexit', 'dbm.dumb'],
'include_files': include_files,
'include_msvcr': True,
'zip_include_packages': ['*'],