~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/devscripts/sourcecode.py

  • Committer: Launchpad Patch Queue Manager
  • Date: 2011-09-05 12:11:26 UTC
  • mfrom: (13851.1.1 merge-review-mail-824487)
  • Revision ID: launchpad@pqm.canonical.com-20110905121126-73llgv10qndze2mb
[r=adeuring][bug=824487] Adds a new line between Review status and
        code review comment

Show diffs side-by-side

added added

removed removed

Lines of Context:
224
224
    if cache == old_cache:
225
225
        return
226
226
    with open(cache_filename, 'wb') as cache_file:
227
 
        json.dump(cache, cache_file, indent=4, sort_keys=True)
 
227
        json.dump(cache, cache_file, indent=4)
228
228
    if not quiet:
229
229
        print 'Cache updated.  Please commit "%s".' % cache_filename
230
230