Fix a SQLAlchemy bug in the web ACL caching code
[invirt/packages/invirt-web.git] / code / cache_acls.py
index 414f2e3..fa9b9f9 100644 (file)
@@ -55,7 +55,7 @@ def refreshCache():
     session.begin()
 
     try:
-        machines = Machine.select()
+        machines = Machine.query().all()
         for m in machines:
             refreshMachine(m)
         session.flush()