Commit d58c03df by sikang

bug fix

parent 3086ec5b
......@@ -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