mirror of
https://gitlab.com/fdroid/fdroidserver.git
synced 2024-11-09 17:00:12 +01:00
Merge branch 'master' of gitorious.org:f-droid/fdroidserver
This commit is contained in:
commit
8ddc3e1258
@ -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:]
|
||||||
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:
|
except VCSException as vcse:
|
||||||
if options.stop:
|
if options.stop:
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
Loading…
Reference in New Issue
Block a user