mirror of
https://github.com/JimmXinu/FanFicFare.git
synced 2026-01-05 23:56:08 +01:00
Fix version_update.py for https url in index.html
This commit is contained in:
parent
0af88089c5
commit
e199ea6ca6
1 changed files with 2 additions and 2 deletions
|
|
@ -58,8 +58,8 @@ version="2.3.6"
|
|||
index_files = ['webservice/index.html']
|
||||
if saved_version:
|
||||
## only do major/minor, always leave micro 0 in index.html.
|
||||
index_re = 'http://([0-9-]+[a-z]?)\\.fanficfare\\.appspot\\.com'
|
||||
index_subs = 'http://%s-%s-0.fanficfare.appspot.com'%saved_version[0:2]
|
||||
index_re = 'https://([0-9-]+[a-z]?)\\.fanficfare\\.appspot\\.com'
|
||||
index_subs = 'https://%s-%s-0.fanficfare.appspot.com'%saved_version[0:2]
|
||||
do_loop(index_files, index_re, index_subs)
|
||||
|
||||
release = 'Release'
|
||||
|
|
|
|||
Loading…
Reference in a new issue