|
|
@ -49,15 +49,3 @@ with open(download_page,'w') as f: |
|
|
|
f.write(string) |
|
|
|
|
|
|
|
|
|
|
|
# android |
|
|
|
|
|
|
|
from versions import android_template, android_page |
|
|
|
with open(android_template) as f: |
|
|
|
string = f.read() |
|
|
|
|
|
|
|
e4a_zipname = "e4a-%s.zip"%version |
|
|
|
string = string.replace("##VERSION##", version) |
|
|
|
string = string.replace("##ZIPNAME##", e4a_zipname) |
|
|
|
|
|
|
|
with open(android_page,'w') as f: |
|
|
|
f.write(string) |
|
|
|