diff --git a/setup.py b/setup.py index 3be4a43..c664119 100644 --- a/setup.py +++ b/setup.py @@ -19,9 +19,9 @@ def run(self): install_dir = get_python_lib() lib_file = glob.glob(__library_file__) - assert len(lib_file) == 1 and len(install_dirs) >= 1 + assert len(lib_file) == 1 and len(install_dir) >= 1 - print('copying {} -> {}'.format(lib_file[0], install_dirs[0])) + print('copying {} -> {}'.format(lib_file[0], install_dir[0])) shutil.copy(lib_file[0], install_dir)