From 2a0d71aab6d2ed1d6fcdb0fe4f71eaeef10431c6 Mon Sep 17 00:00:00 2001 From: mike cullerton Date: Wed, 2 Feb 2022 10:04:52 -0500 Subject: [PATCH] Status was removed from the model --- crc/models/git_models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crc/models/git_models.py b/crc/models/git_models.py index bd9314db..314b18fc 100644 --- a/crc/models/git_models.py +++ b/crc/models/git_models.py @@ -24,7 +24,7 @@ class GitCommit(object): class GitRepoSchema(ma.Schema): class Meta: model = GitRepo - fields = ["directory", "branch", "merge_branch", "status", "changes", "untracked"] + fields = ["directory", "branch", "merge_branch", "changes", "untracked"] class GitCommitSchema(ma.Schema):