mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-05 15:00:30 +03:00
rewritemeta: only print file type if its changing
This commit is contained in:
parent
1f7f9d403c
commit
2ecaf6ef8d
1 changed files with 3 additions and 1 deletions
|
|
@ -77,8 +77,10 @@ def main():
|
|||
if not options.to and ext not in supported:
|
||||
logging.info("Ignoring %s file at '%s'" % (ext, path))
|
||||
continue
|
||||
else:
|
||||
elif options.to is not None:
|
||||
logging.info("rewriting '%s' to %s" % (appid, options.to))
|
||||
else:
|
||||
logging.info("rewriting '%s'" % (appid))
|
||||
|
||||
to_ext = ext
|
||||
if options.to is not None:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue