/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/mutabletree.py

Merge bzr.dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
101
101
 
102
102
    @needs_write_lock
103
103
    def commit(self, message=None, revprops=None, *args, **kwargs):
104
 
        """Perform a commit from the tree into the trees branch."""
105
 
        # avoid circular imports:
 
104
        # avoid circular imports
106
105
        from bzrlib import commit
107
106
        if revprops is None:
108
107
            revprops = {}
113
112
        #message being used for the branch
114
113
        args = (DEPRECATED_PARAMETER, message, ) + args
115
114
        committed_id = commit.Commit().commit(working_tree=self,
116
 
            revprops=revprops,
117
 
            *args, **kwargs)
118
 
        #self._set_inventory(self.read_working_inventory())
 
115
            revprops=revprops, *args, **kwargs)
119
116
        return committed_id
120
117
 
121
118
    def _gather_kinds(self, files, kinds):