~unity-2d-team/unity-2d/Shell-MultiMonitor

« back to all changes in this revision

Viewing changes to grackle/model.py

  • Committer: William Grant
  • Date: 2012-01-23 02:46:30 UTC
  • Revision ID: william.grant@canonical.com-20120123024630-8ycsc0ahboe6crgh
unrestrict fetched columns for now.

Show diffs side-by-side

added added

removed removed

Lines of Context:
222
222
        ids = [v for k, v in pairs]
223
223
 
224
224
        wanted_cols, func = FORMATS[format](headers)
225
 
        messages = self.messages.multiget(ids, columns=wanted_cols)
 
225
 
 
226
        # XXX: No need to get all columns. Restrict based on format.
 
227
        messages = self.messages.multiget(ids)
226
228
 
227
229
        return (
228
230
            str(pairs[0][0]),