aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xmanage.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/manage.py b/manage.py
index c89b4e8..9f0b467 100755
--- a/manage.py
+++ b/manage.py
@@ -91,7 +91,8 @@ def git_cat_file(treeish):
def git_write_patch(treeish, outfile):
"""Write patch with user-defined filename"""
- cmd = ['git', 'format-patch', '-1', '--stdout', treeish]
+ cmd = ['git', 'format-patch', '-1', '--stdout', '--no-stat',
+ '--no-signature', treeish]
LOG.debug("Running command: '%s'", ' '.join(cmd))
with open(outfile, 'w') as fobj:
# Skip the first line of the patch that contains the commit sha1