Skip to content
This repository has been archived by the owner on Oct 29, 2024. It is now read-only.

Commit

Permalink
mods: fix f-string error
Browse files Browse the repository at this point in the history
  • Loading branch information
xTVaser committed Aug 26, 2024
1 parent 76b9844 commit 84a3254
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/mod-bundler/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ def override_binaries_and_assets(args, out_folder, executable_extensions=True):

def patch_mod_timestamp_and_version_info(args, out_folder):
try:
mod_settings_files = glob.glob(f"{args["outputDir"]}/{out_folder}/data/goal_src/**/mod-settings.gc")
mod_settings_files = glob.glob(f"{args['outputDir']}/{out_folder}/data/goal_src/**/mod-settings.gc")
for settings_file_path in mod_settings_files:
file = open(settings_file_path, "r")
file_data = file.read()
Expand Down

0 comments on commit 84a3254

Please sign in to comment.