mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-05 06:50:29 +03:00
common: support PosixPath in log message
This commit is contained in:
parent
7e362a708c
commit
04230dc7c0
1 changed files with 1 additions and 1 deletions
|
|
@ -1619,7 +1619,7 @@ def fetch_real_name(app_dir, flavours):
|
||||||
for path in manifest_paths(app_dir, flavours):
|
for path in manifest_paths(app_dir, flavours):
|
||||||
if not path.suffix == '.xml' or not path.is_file():
|
if not path.suffix == '.xml' or not path.is_file():
|
||||||
continue
|
continue
|
||||||
logging.debug("fetch_real_name: Checking manifest at " + path)
|
logging.debug("fetch_real_name: Checking manifest at %s" % path)
|
||||||
try:
|
try:
|
||||||
xml = parse_xml(path)
|
xml = parse_xml(path)
|
||||||
except (XMLElementTree.ParseError, ValueError):
|
except (XMLElementTree.ParseError, ValueError):
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue