summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2017-03-25 16:20:22 +0200
committerLars Wirzenius <liw@liw.fi>2017-03-25 16:20:22 +0200
commit0e3e5dd591c9d810ecb5a4d8f7aefdcab3ada9c0 (patch)
tree6f991d0773908cb2707ab7fa2e259fede36a242a
parentd25974cc09b9a69dc326322c9102229a8fbe19cf (diff)
downloaddistix-0e3e5dd591c9d810ecb5a4d8f7aefdcab3ada9c0.tar.gz
Don't give long list of filenames to git commit
-rw-r--r--distixlib/git.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/distixlib/git.py b/distixlib/git.py
index 648b374..83f2ffb 100644
--- a/distixlib/git.py
+++ b/distixlib/git.py
@@ -38,7 +38,7 @@ class Git(object):
feed_stdin='\0'.join(filenames))
self._git(
- ['commit', '-q', '-m', commit_msg] + filenames,
+ ['commit', '-q', '-m', commit_msg],
cwd=self._dirname)
def find_dirt(self):