mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-15 23:42:37 +03:00
Remove more prints in favour of logging
This commit is contained in:
parent
6e515ed34e
commit
a67d80a011
1 changed files with 2 additions and 2 deletions
|
@ -1340,10 +1340,10 @@ def prepare_source(vcs, app, build, build_dir, srclib_dir, extlib_dir, onserver=
|
|||
for d in update_dirs:
|
||||
subdir = os.path.join(root_dir, d)
|
||||
if d == '.':
|
||||
print("Updating main project")
|
||||
logging.info("Updating main project")
|
||||
cmd = parms + ['-p', d]
|
||||
else:
|
||||
print("Updating subproject %s" % d)
|
||||
logging.info("Updating subproject %s" % d)
|
||||
cmd = lparms + ['-p', d]
|
||||
p = FDroidPopen(cmd, cwd=root_dir)
|
||||
# Check to see whether an error was returned without a proper exit
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue