/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: Martin
  • Date: 2017-11-12 13:53:51 UTC
  • mto: This revision was merged to the branch mainline in revision 6810.
  • Revision ID: gzlist@googlemail.com-20171112135351-uyr1ncw7visg62c2
Apply 2to3 ws_comma fixer

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