From 7c1ee47b76dc81759140b566ebdccfbf63547243 Mon Sep 17 00:00:00 2001 From: Evan Broder Date: Fri, 14 Nov 2008 23:17:15 -0500 Subject: [PATCH 1/1] I still want to see all VMs, even the ones without an ACL svn path=/trunk/packages/invirt-web/; revision=1644 --- code/webcommon.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/webcommon.py b/code/webcommon.py index b9a6287..7410523 100644 --- a/code/webcommon.py +++ b/code/webcommon.py @@ -25,7 +25,7 @@ class State(object): def getMachines(self): if self.isadmin: - return Machine.query().join('acl').all() + return Machine.query().all() else: return Machine.query().join('acl').filter_by(user=self.username) -- 1.7.9.5