~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to doc/developers/integration.txt

  • Committer: Martin Pool
  • Date: 2008-04-08 10:55:41 UTC
  • mto: This revision was merged to the branch mainline in revision 3345.
  • Revision ID: mbp@sourcefrog.net-20080408105541-cec8p2022jye422i
Fix ReST syntax in integration guide

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
change, eg changes.added is a list of added files, changes.removed is list
36
36
of removed files, changes.modified is a list of modified files. The contents
37
37
of the lists aren't just filenames, but include other information as well.
38
 
 To grab just the filename we want the first value, eg::
 
38
To grab just the filename we want the first value, eg::
39
39
 
40
40
  print("list of newly added files")
41
41
  for filename in changes.added: