~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/smart/repository.py

  • Committer: Ian Clatworthy
  • Date: 2007-08-14 03:59:22 UTC
  • mto: (2733.1.1 ianc-integration)
  • mto: This revision was merged to the branch mainline in revision 2734.
  • Revision ID: ian.clatworthy@internode.on.net-20070814035922-siavg542cwvkf4r5
Fix pretty doc generation so works for all html docs

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