/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 breezy/clean_tree.py

  • Committer: Jelmer Vernooij
  • Date: 2017-11-12 17:53:47 UTC
  • mfrom: (6813 trunk)
  • mto: This revision was merged to the branch mainline in revision 6819.
  • Revision ID: jelmer@jelmer.uk-20171112175347-wovgaqmkbyo8fo7f
Merge trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
83
83
            try:
84
84
                controldir.ControlDir.open(path)
85
85
            except errors.NotBranchError:
86
 
                result.append((path,subp))
 
86
                result.append((path, subp))
87
87
            else:
88
88
                # TODO may be we need to notify user about skipped directories?
89
89
                pass
90
90
        else:
91
 
            result.append((path,subp))
 
91
            result.append((path, subp))
92
92
    return result
93
93
 
94
94