From 7ca13c4b852eed0dd34099fd258b2df2550c6e13 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: May 22 2015 08:49:22 +0000 Subject: Add a new error when an invalid/incomplete request is made --- diff --git a/pagure/api/__init__.py b/pagure/api/__init__.py index 0e8910a..353c8c8 100644 --- a/pagure/api/__init__.py +++ b/pagure/api/__init__.py @@ -28,6 +28,7 @@ API_ERROR_CODE = { 2: 'No issue tracker found for this project', 3: 'An error occured at the database level and prevent the action from ' 'reaching completion', + 4: 'Invalid or incomplete input submited', }