/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/smart/repository.py

  • Committer: Martin Pool
  • Date: 2007-09-14 06:31:28 UTC
  • mfrom: (2822 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2823.
  • Revision ID: mbp@sourcefrog.net-20070914063128-0p7mh6zfb4pzdg9p
merge trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
72
72
            return FailedSmartServerResponse(('nosuchrevision', revision_id), '')
73
73
 
74
74
        for revision, parents in revision_graph.items():
75
 
            lines.append(' '.join([revision,] + parents))
 
75
            lines.append(' '.join((revision, ) + tuple(parents)))
76
76
 
77
77
        return SuccessfulSmartServerResponse(('ok', ), '\n'.join(lines))
78
78