Skip to content

Commit

Permalink
tools: python 2 support restored
Browse files Browse the repository at this point in the history
  • Loading branch information
GValiente committed Oct 8, 2023
1 parent 612f4ea commit 18cbd46
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 5 deletions.
5 changes: 5 additions & 0 deletions butano/include/bn_documentation.h
Original file line number Diff line number Diff line change
Expand Up @@ -2156,6 +2156,11 @@
* @tableofcontents
*
*
* @section changelog_15_7_1 15.7.1 (next release)
*
* Python 2 support restored.
*
*
* @section changelog_15_7_0 15.7.0
*
* * bn::blending::restore added.
Expand Down
5 changes: 3 additions & 2 deletions butano/tools/butano_dmg_audio_tool.py
Original file line number Diff line number Diff line change
Expand Up @@ -232,8 +232,9 @@ def process_dmg_audio(audio_folder_paths, build_folder_path):

sys.stdout.flush()

with Pool() as pool:
process_results = pool.map(DmgAudioFileInfoProcessor(build_folder_path), audio_file_infos)
pool = Pool()
process_results = pool.map(DmgAudioFileInfoProcessor(build_folder_path), audio_file_infos)
pool.close()

process_excs = []

Expand Down
5 changes: 3 additions & 2 deletions butano/tools/butano_graphics_tool.py
Original file line number Diff line number Diff line change
Expand Up @@ -1565,8 +1565,9 @@ def process_graphics(graphics_folder_paths, build_folder_path):

sys.stdout.flush()

with Pool() as pool:
process_results = pool.map(GraphicsFileInfoProcessor(build_folder_path), graphics_file_infos)
pool = Pool()
process_results = pool.map(GraphicsFileInfoProcessor(build_folder_path), graphics_file_infos)
pool.close()

total_size = 0
process_excs = []
Expand Down
3 changes: 2 additions & 1 deletion docs/changelog.html

Large diffs are not rendered by default.

0 comments on commit 18cbd46

Please sign in to comment.