Mercurial > wikked
changeset 122:17188020e87e
Fixed Mercurial commit action.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Thu, 21 Nov 2013 21:35:56 -0800 |
parents | 7c7f7eca51ae |
children | ac6166453d77 |
files | wikked/scm.py |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/wikked/scm.py Thu Nov 21 21:35:13 2013 -0800 +++ b/wikked/scm.py Thu Nov 21 21:35:56 2013 -0800 @@ -302,9 +302,9 @@ # Commit! if 'author' in op_meta: - self.client.commit(*rel_paths, message=op_meta['message'], user=op_meta['author']) + self.client.commit(include=rel_paths, message=op_meta['message'], user=op_meta['author']) else: - self.client.commit(*rel_paths, message=op_meta['message']) + self.client.commit(include=rel_paths, message=op_meta['message']) def revert(self, paths=None): if paths is not None: