Commit 9119a9fe by sikang

bug fix

parent 073080c0
...@@ -15,7 +15,7 @@ def process_file_content(path, file_name): ...@@ -15,7 +15,7 @@ def process_file_content(path, file_name):
# replace the file content based on mangle settings # replace the file content based on mangle settings
for (src, dst) in activity_mangle_setting.items(): for (src, dst) in activity_mangle_setting.items():
separator = [" ", ".", "\"", "{", "(", ":", ">", ";"] separator = [" ", ".", "\"", "{", "(", ")", ":", ">", ";"]
for sep in separator: for sep in separator:
file_content = file_content.replace(src + sep, dst + sep) file_content = file_content.replace(src + sep, dst + sep)
......
...@@ -14,7 +14,7 @@ def process_file_content(path, file_name): ...@@ -14,7 +14,7 @@ def process_file_content(path, file_name):
# replace the file content based on mangle settings # replace the file content based on mangle settings
for (src, dst) in activity_mangle_setting.items(): for (src, dst) in activity_mangle_setting.items():
separator = [" ", ".", "\"", "{", "(", ":", ">", ";"] separator = [" ", ".", "\"", "{", "(", ")", ":", ">", ";"]
for sep in separator: for sep in separator:
file_content = file_content.replace(src + sep, dst + sep) file_content = file_content.replace(src + sep, dst + sep)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment