X-Git-Url: http://xvm.mit.edu/gitweb/invirt/packages/invirt-web.git/blobdiff_plain/7c1ee47b76dc81759140b566ebdccfbf63547243..2be0969e153ace507ec07b27d156b50e54e00f94:/code/webcommon.py 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())