From 6daeb88ab961987db19d49614b82baa5abd61f06 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Allan=20Nordh=C3=B8y?= Date: Sun, 22 Oct 2017 06:43:18 +0000 Subject: [PATCH] HTTP, HTTPS --- fdroidserver/signatures.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/fdroidserver/signatures.py b/fdroidserver/signatures.py index 9433e49a..c5b115b8 100644 --- a/fdroidserver/signatures.py +++ b/fdroidserver/signatures.py @@ -13,7 +13,7 @@ # GNU Affero General Public License for more details. # # You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . +# along with this program. If not, see . from argparse import ArgumentParser @@ -47,7 +47,7 @@ def extract_signature(apkpath): def extract(config, options): - # Create tmp dir if missing... + # Create tmp dir if missing… tmp_dir = 'tmp' if not os.path.exists(tmp_dir): os.mkdir(tmp_dir) @@ -56,7 +56,7 @@ def extract(config, options): logging.critical(_('no APK supplied')) sys.exit(1) - # iterate over supplied APKs downlaod and extract them... + # iterate over supplied APKs downlaod and extract them… httpre = re.compile('https?:\/\/') for apk in options.APK: try: @@ -76,7 +76,7 @@ def extract(config, options): if tmp_apk and os.path.exists(tmp_apk): os.remove(tmp_apk) else: - logging.warn(_('refuse downloading via insecure http connection (use https or specify --no-https-check): {apkfilename}').format(apkfilename=apk)) + logging.warn(_('refuse downloading via insecure HTTP connection (use HTTPS or specify --no-https-check): {apkfilename}').format(apkfilename=apk)) except FDroidException as e: logging.warning(_("Failed fetching signatures for '{apkfilename}': {error}") .format(apkfilename=apk, error=e)) -- 2.30.2