Skip to content

Commit

Permalink
Can now use python2 or python3 interchangeably.
Browse files Browse the repository at this point in the history
  • Loading branch information
Joseph Waggy authored Dec 6, 2017
1 parent 2ca843a commit bf9657f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions update_plugins.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit bf9657f

Please sign in to comment.