Skip to content

Commit b296b20

Browse files
author
Clyde Bazile
committed
fixes AttributeError: 'module' object has no attribute 'exist'
1 parent 58f0911 commit b296b20

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

etc/make_release.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -403,7 +403,7 @@ def build_distribution(release_tag, release_version, c_driver_dir, quiet):
403403
outs, errs = proc.communicate()
404404

405405
dist_file = 'mongo-cxx-driver-{}.tar.gz'.format(release_tag)
406-
if proc.returncode == 0 and os.path.exist(dist_file):
406+
if proc.returncode == 0 and os.path.exists(dist_file):
407407
if not quiet:
408408
click.echo('C++ Driver build was successful.')
409409
click.echo('Distribution file: {}'.format(dist_file))

0 commit comments

Comments
 (0)