X-Git-Url: http://xvm.mit.edu/gitweb/invirt/packages/invirt-web.git/blobdiff_plain/9dd8549018d758eccc9768afb4049de2945d2616..f9904f2409d8fdc314676c624a414c27170c1551:/code/webcommon.py?ds=inline diff --git a/code/webcommon.py b/code/webcommon.py index 7410523..0697a53 100644 --- a/code/webcommon.py +++ b/code/webcommon.py @@ -25,9 +25,9 @@ class State(object): def getMachines(self): if self.isadmin: - return Machine.query().all() + return Machine.query.all() else: - return Machine.query().join('acl').filter_by(user=self.username) + return Machine.query.join('acl').filter_by(user=self.username) machines = cachedproperty(getMachines) xmlist_raw = cachedproperty(lambda self: controls.getList())