448
452
tree.set_last_revision(revision_id)
455
def commit(self, message=None, revprops=None, *args, **kwargs):
452
457
from bzrlib.commit import Commit
453
462
# args for wt.commit start at message from the Commit.commit method,
454
463
# but with branch a kwarg now, passing in args as is results in the
455
464
#message being used for the branch
466
Commit().commit(working_tree=self, revprops=revprops, *args, **kwargs)
458
467
self._set_inventory(self.read_working_inventory())
460
469
def id2abspath(self, file_id):