Commit d09051a8 authored by Rohit Gupta's avatar Rohit Gupta

fixed a bug in python search/replace script

parent f13b40c6
......@@ -20,7 +20,7 @@ file.close()
if keyword == 'mme_ip_address':
#string = (re.sub(r"mme_ip_address\s*=\s*\([^\$]+)\)\s*;\s*", r"<% tex \1 %>", t, re.M)
replacement_text = keyword + ' = ({' + replacement_text + ')} ; '
replacement_text = keyword + ' = ( { ' + replacement_text + ' } ) ; '
string = re.sub(r"mme_ip_address\s*=\s*\(([^\$]+?)\)\s*;", replacement_text, string, re.M)
elif keyword == 'N_RB_DL':
replacement_text = keyword + ' = ' + replacement_text + ' ; '
......
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