Commit 4dee1fd3 by sikang

bug fix

parent 9119a9fe
......@@ -15,7 +15,7 @@ def process_file_content(path, file_name):
# replace the file content based on mangle settings
for (src, dst) in activity_mangle_setting.items():
separator = [" ", ".", "\"", "{", "(", ")", ":", ">", ";"]
separator = [" ", ".", "\"", "{", "(", ")", "[", "]", ":", ">", ";"]
for sep in separator:
file_content = file_content.replace(src + sep, dst + sep)
......
......@@ -14,7 +14,7 @@ def process_file_content(path, file_name):
# replace the file content based on mangle settings
for (src, dst) in activity_mangle_setting.items():
separator = [" ", ".", "\"", "{", "(", ")", ":", ">", ";"]
separator = [" ", ".", "\"", "{", "(", ")", "[", "]", ":", ">", ";"]
for sep in separator:
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