fix(process): fix the stupid number sign

This commit is contained in:
Haoyu Xu
2022-01-24 23:12:19 -05:00
parent 93881e5476
commit d2a371a27f
2 changed files with 2 additions and 2 deletions

View File

@@ -77,7 +77,7 @@ class Initializer:
copy_map = [
dict(
source_name="operator_settings.js",
target_name="{}_settings.js".format(self.config["operators"][self.operator_name]["index.html"]["id"]),
target_name="{}_settings.js".format(self.config["operators"][self.operator_name]["index.html"]["id"].replace("%23", "#")),
source_path=operator_settings_path,
target_path=dir_map["config"],
),