~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transform.py

  • Committer: Martin Pool
  • Date: 2010-01-15 03:44:06 UTC
  • mto: This revision was merged to the branch mainline in revision 5019.
  • Revision ID: mbp@sourcefrog.net-20100115034406-79xikyzboyysiat3
Delete deprecated ProgressBar constructor

Show diffs side-by-side

added added

removed removed

Lines of Context:
1062
1062
class DiskTreeTransform(TreeTransformBase):
1063
1063
    """Tree transform storing its contents on disk."""
1064
1064
 
1065
 
    def __init__(self, tree, limbodir, pb=DummyProgress(),
 
1065
    def __init__(self, tree, limbodir, pb=None,
1066
1066
                 case_sensitive=True):
1067
1067
        """Constructor.
1068
1068
        :param tree: The tree that will be transformed, but not necessarily
1069
1069
            the output tree.
1070
1070
        :param limbodir: A directory where new files can be stored until
1071
1071
            they are installed in their proper places
1072
 
        :param pb: A ProgressBar indicating how much progress is being made
 
1072
        :param pb: ignored
1073
1073
        :param case_sensitive: If True, the target of the transform is
1074
1074
            case sensitive, not just case preserving.
1075
1075
        """