1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-11-14 11:00:10 +01:00

update: fix crash in debug logging message

This commit is contained in:
Hans-Christoph Steiner 2017-03-15 14:23:19 +01:00
parent 1e9406778f
commit 4430d8b01c

View File

@ -550,7 +550,7 @@ def scan_repo_files(apkcache, repodir, knownapks, use_date_from_file=False):
continue continue
filename = os.path.join(repodir, name) filename = os.path.join(repodir, name)
if filename.endswith('_src.tar.gz'): if filename.endswith('_src.tar.gz'):
logging.debug('skipping source tarball:', filename) logging.debug('skipping source tarball: ' + filename)
continue continue
if not common.is_repo_file(filename): if not common.is_repo_file(filename):
continue continue