mirror of
1
0
Fork 0

Make update_plugin.py script compatible with Python 3

This commit is contained in:
Alexander Fomin 2014-05-15 13:46:51 +04:00
parent 6a16a9393c
commit d3fd0cf632
1 changed files with 1 additions and 1 deletions

View File

@ -69,7 +69,7 @@ def download_extract_replace(plugin_name, zip_path, temp_dir, source_dir):
shutil.move(plugin_temp_path, plugin_dest_path) shutil.move(plugin_temp_path, plugin_dest_path)
print 'Updated %s' % plugin_name print('Updated {0}'.format(plugin_name))
if __name__ == '__main__': if __name__ == '__main__':