mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-05 15:00:30 +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)
|
txt = str(be)
|
||||||
if len(txt) > 8192:
|
if len(txt) > 8192:
|
||||||
txt = txt[-8192:]
|
txt = txt[-8192:]
|
||||||
|
try:
|
||||||
newpage.save(str(be), summary='Build log')
|
newpage.save(str(be), summary='Build log')
|
||||||
|
except:
|
||||||
|
print "Error while attempting to publish build log"
|
||||||
except VCSException as vcse:
|
except VCSException as vcse:
|
||||||
if options.stop:
|
if options.stop:
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue