chg: [paste_submit UI] add debug

pull/422/head
Terrtia 2019-06-05 16:31:35 +02:00
parent 17af705231
commit 601ea8f13e
No known key found for this signature in database
GPG Key ID: 1E1B1F50D84613D0
1 changed files with 4 additions and 0 deletions

View File

@ -310,6 +310,7 @@ def submit():
if ltags or ltagsgalaxies:
if not addTagsVerification(ltags, ltagsgalaxies):
content = 'INVALID TAGS'
print(content)
return content, 400
# add submitted tags
@ -358,6 +359,7 @@ def submit():
else:
content = 'wrong file type, allowed_extensions: sh, pdf, zip, gz, tar.gz or remove the extension'
print(content)
return content, 400
@ -380,9 +382,11 @@ def submit():
else:
content = 'size error'
print(content)
return content, 400
content = 'submit aborded'
print(content)
return content, 400