~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/builtins.py

  • Committer: John Arbash Meinel
  • Date: 2006-01-07 16:32:21 UTC
  • mto: (1685.1.1 bzr-encoding)
  • mto: This revision was merged to the branch mainline in revision 1752.
  • Revision ID: john@arbash-meinel.com-20060107163221-8e5aee35f0df9402
Updated cmd_unknowns

Show diffs side-by-side

added added

removed removed

Lines of Context:
1096
1096
    def run(self):
1097
1097
        from bzrlib.osutils import quotefn
1098
1098
        for f in WorkingTree.open_containing(u'.')[0].unknowns():
1099
 
            print quotefn(f)
 
1099
            self.outf.write(quotefn(f))
 
1100
            self.outf.write('\n')
1100
1101
 
1101
1102
 
1102
1103
class cmd_ignore(Command):