From 6880353c9255d63449c9ee72f10ed19c81bfff77 Mon Sep 17 00:00:00 2001 From: plasticuproject Date: Thu, 9 Aug 2018 22:42:03 -0400 Subject: [PATCH] Update setup.py Remedy fatal typo. --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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)