svn path=/trunk/packages/invirt-console/; revision=2157
+invirt-console (0.2.7) unstable; urgency=low
+
+ * Use a simpler query construct in ConsoleFS.
+
+ -- Evan Broder <broder@mit.edu> Tue, 17 Feb 2009 04:23:05 -0500
+
invirt-console (0.2.6) unstable; urgency=high
* Turn off autocompletion of console names. (LP: #326075)
if time() - self.lasttime > 5:
self.lasttime = time()
database.clear_cache()
- self.machines = dict((machine.name, machine) for machine in database.session.query(database.Machine).all())
+ self.machines = dict((machine.name, machine) for machine in database.Machine.query.all())
def getMachines(self, **kw):
self.recache()