mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-05 23:10:29 +03:00
Merge branch 'master' of gitorious.org:f-droid/fdroidserver
This commit is contained in:
commit
8ddc3e1258
1 changed files with 4 additions and 1 deletions
|
|
@ -644,7 +644,10 @@ def main():
|
|||
txt = str(be)
|
||||
if len(txt) > 8192:
|
||||
txt = txt[-8192:]
|
||||
newpage.save(str(be), summary='Build log')
|
||||
try:
|
||||
newpage.save(str(be), summary='Build log')
|
||||
except:
|
||||
print "Error while attempting to publish build log"
|
||||
except VCSException as vcse:
|
||||
if options.stop:
|
||||
sys.exit(1)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue