diff options
author | Chris Ball <cjb@laptop.org> | 2011-01-08 20:54:44 -0500 |
---|---|---|
committer | Chris Ball <cjb@laptop.org> | 2011-01-08 20:54:44 -0500 |
commit | 06e30d93038de9da326e4bc5c5ed7154b83a18e6 (patch) | |
tree | 8fb48924e3acb886843d6c3d287d56a74c3601d8 /libbe/storage/vcs | |
parent | 0b33ffd2515cbc5d7f5998839338b84b72660386 (diff) | |
parent | 73c9f3ebbf945a8a5c1eb398dff1324ffb47ae43 (diff) | |
download | bugseverywhere-06e30d93038de9da326e4bc5c5ed7154b83a18e6.tar.gz |
Merge commit 'refs/merge-requests/3' of git://gitorious.org/be/be
Diffstat (limited to 'libbe/storage/vcs')
-rw-r--r-- | libbe/storage/vcs/git.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbe/storage/vcs/git.py b/libbe/storage/vcs/git.py index ba98fa8..7c9199d 100644 --- a/libbe/storage/vcs/git.py +++ b/libbe/storage/vcs/git.py @@ -143,7 +143,7 @@ class Git(base.VCS): return output.rstrip('\n').splitlines() def _vcs_commit(self, commitfile, allow_empty=False): - args = ['commit', '--all', '--file', commitfile] + args = ['commit', '--file', commitfile] if allow_empty == True: args.append('--allow-empty') status,output,error = self._u_invoke_client(*args) |