~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to utilities/bsondump

  • Committer: Launchpad Patch Queue Manager
  • Date: 2011-12-14 08:13:46 UTC
  • mfrom: (14412.5.5 666765-features-no-reasons)
  • Revision ID: launchpad@pqm.canonical.com-20111214081346-9fqyoi3962cyxqb1
[r=jcsackett][bug=666765] record features and scopes in the timeline;
        don't show scopes in the page footer

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#! /usr/bin/python
 
2
import bson
 
3
from pprint import pprint
 
4
import sys
 
5
 
 
6
pprint(bson.decode_all(file(sys.argv[1], 'rb').read()))