/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 bzrlib/builtins.py

Move Branch.unknowns() to WorkingTree.

Show diffs side-by-side

added added

removed removed

Lines of Context:
996
996
    @display_command
997
997
    def run(self):
998
998
        from bzrlib.osutils import quotefn
999
 
        for f in WorkingTree.open_containing('.')[0].branch.unknowns():
 
999
        for f in WorkingTree.open_containing('.')[0].unknowns():
1000
1000
            print quotefn(f)
1001
1001
 
1002
1002