summaryrefslogtreecommitdiffstats
path: root/store/api.py
diff options
context:
space:
mode:
authorNikolay Zamotaev <nzamotaev@luxoft.com>2020-09-11 15:51:57 +0300
committerNikolay Zamotaev <nzamotaev@luxoft.com>2020-09-11 14:32:09 +0000
commit561c1525e11f3561f6afe6817a77198cbc363680 (patch)
treeaeec4b15691efb26da7426d61b44364e83313506 /store/api.py
parent84a6bc29d890416b2f7f42edcbce4cca4a7ea565 (diff)
Package verification fix
Package verification was not checking if package tags were valid Change-Id: I0b788b59179fc18370ac3fb619f22126358bc0c8 Fixes: AUTOSUITE-1615 Reviewed-by: Egor Nemtsev <enemtsev@luxoft.com>
Diffstat (limited to 'store/api.py')
-rw-r--r--store/api.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/store/api.py b/store/api.py
index 75e730f..9444b0b 100644
--- a/store/api.py
+++ b/store/api.py
@@ -178,6 +178,8 @@ def upload(request):
except Exception as error:
status = str(error)
+ except BaseException as error:
+ status = str(error)
return JsonResponse({'status': status})