mirror of
https://github.com/f-droid/fdroidserver.git
synced 2026-06-21 23:28:59 -04:00
deploy: ensure progress is instantiated before trying to use it
This commit is contained in:
@@ -453,9 +453,10 @@ def update_servergitmirrors(servergitmirrors, repo_section):
|
||||
| git.remote.PushInfo.REMOTE_FAILURE
|
||||
| git.remote.PushInfo.REMOTE_REJECTED):
|
||||
# Show potentially useful messages from git remote
|
||||
for line in progress.other_lines:
|
||||
if line.startswith('remote:'):
|
||||
logging.debug(line)
|
||||
if progress:
|
||||
for line in progress.other_lines:
|
||||
if line.startswith('remote:'):
|
||||
logging.debug(line)
|
||||
raise FDroidException(remote.url + ' push failed: ' + str(pushinfo.flags)
|
||||
+ ' ' + pushinfo.summary)
|
||||
else:
|
||||
|
||||
Reference in New Issue
Block a user