Commit dd6201e6 by sikang

bug fix privacy 空格转码

parent 495054d1
...@@ -68,7 +68,7 @@ def create_config(read_path,write_path): ...@@ -68,7 +68,7 @@ def create_config(read_path,write_path):
for line in lines: for line in lines:
line = line.replace("${app_name}",sys.argv[1])\ line = line.replace("${app_name}",sys.argv[1])\
.replace("${desc}",sys.argv[5]+"_desc.txt")\ .replace("${desc}",sys.argv[5]+"_desc.txt")\
.replace("${privacy_url}",sys.argv[6]+"?name="+sys.argv[1]) .replace("${privacy_url}",sys.argv[6]+"?name="+sys.argv[1].replace(" ","%20"))
f_w.write(line) f_w.write(line)
output = "/Users/connor/Documents/apks/"+sys.argv[5]+"_"+sys.argv[1]; output = "/Users/connor/Documents/apks/"+sys.argv[5]+"_"+sys.argv[1];
......
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