From bf9657fc91405baaadb20fbad748cca8a9e887ad Mon Sep 17 00:00:00 2001 From: Joseph Waggy Date: Wed, 6 Dec 2017 11:01:41 -0500 Subject: [PATCH] Can now use python2 or python3 interchangeably. --- update_plugins.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/update_plugins.py b/update_plugins.py index 59e43124..15504fc8 100644 --- a/update_plugins.py +++ b/update_plugins.py @@ -82,14 +82,13 @@ def download_extract_replace(plugin_name, zip_path, temp_dir, source_dir): pass shutil.move(plugin_temp_path, plugin_dest_path) - + print(zip_path) print('Updated {0}'.format(plugin_name)) def update(plugin): name, github_url = plugin.split(' ') zip_path = GITHUB_ZIP % github_url - print zip_path download_extract_replace(name, zip_path, temp_directory, SOURCE_DIR)