aboutsummaryrefslogtreecommitdiffstats
path: root/src/dashboard/utils.py
diff options
context:
space:
mode:
authorSawyer Bergeron <sbergeron@iol.unh.edu>2020-03-17 12:52:21 +0000
committerGerrit Code Review <gerrit@opnfv.org>2020-03-17 12:52:21 +0000
commit287a9e199abf29c4872390e4ff15db5f87382e20 (patch)
tree01948e75db2eb3c398de4ae9d266fc6c60da59e9 /src/dashboard/utils.py
parentc8998d426cbf12afb2d2e68059e0969388b50c95 (diff)
parente90f13e0413594d95e50256b1206ffd64217f2da (diff)
Merge "Quick Deploy Fixes." into resource
Diffstat (limited to 'src/dashboard/utils.py')
-rw-r--r--src/dashboard/utils.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/dashboard/utils.py b/src/dashboard/utils.py
index 3d63366..d6b697a 100644
--- a/src/dashboard/utils.py
+++ b/src/dashboard/utils.py
@@ -34,6 +34,8 @@ class AbstractModelQuery():
for model in cls.model_list:
result += list(model.objects.filter(*args, **kwargs))
+ return result
+
@classmethod
def get(cls, *args, **kwargs):
try: