aboutsummaryrefslogtreecommitdiffstats
path: root/Post/parser.py
diff options
context:
space:
mode:
Diffstat (limited to 'Post/parser.py')
-rw-r--r--Post/parser.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Post/parser.py b/Post/parser.py
index 51886a1..dcf4f6b 100644
--- a/Post/parser.py
+++ b/Post/parser.py
@@ -53,7 +53,7 @@ class Parser:
b.EMAIL = str(jsondata['email'])
b.LINK_BACK = jsondata.get("link_back", None)
- error_type = jsondata.get("error_type", ErrorType.RECIPE)
+ b.ERROR_TYPE = jsondata.get("error_type", ErrorType.RECIPE)
# Extract the branch and commit
g = re.match(r'(.*): (.*)', jsondata['branch_commit'])