~matsubara/tarmac/branch-merger-piped

« back to all changes in this revision

Viewing changes to tarmac/branch.py

  • Committer: Tarmac
  • Author(s): Rodney Dawes
  • Date: 2010-09-24 17:02:38 UTC
  • mfrom: (359.3.1 contributor-plugin)
  • Revision ID: paul@eventuallyanyway.com-20100924170238-noswsmfwm9w06rrc
Plug-in to allow limiting contributing authors to branches
Fix pyflakes/pep8 warnings in branch.py
Fix a typo in recipebuilder.py comment

Show diffs side-by-side

added added

removed removed

Lines of Context:
168
168
                apparent_authors = rev.get_apparent_authors()
169
169
                author_list.extend(
170
170
                    [a.replace('\n', '') for a in apparent_authors])
171
 
            
172
171
 
173
172
        return author_list
174
173