1
0

kivy: fix regression

This commit is contained in:
ThomasV
2016-03-06 14:49:50 +01:00
parent 053c045adf
commit 8574caae09
3 changed files with 4 additions and 2 deletions

View File

@@ -4,7 +4,7 @@ import re
import hashlib
import os
from versions import version, version_win, version_mac
from versions import version, version_win, version_mac, version_apk
from versions import download_template, download_page
with open(download_template) as f:
@@ -13,6 +13,7 @@ with open(download_template) as f:
string = string.replace("##VERSION##", version)
string = string.replace("##VERSION_WIN##", version_win)
string = string.replace("##VERSION_MAC##", version_mac)
string = string.replace("##VERSION_APK##", version_apk)
files = {
'tgz': "Electrum-%s.tar.gz" % version,