diff options
Diffstat (limited to 'git_format_patch.go')
-rw-r--r-- | git_format_patch.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git_format_patch.go b/git_format_patch.go index 3533eca..56474d2 100644 --- a/git_format_patch.go +++ b/git_format_patch.go @@ -21,7 +21,7 @@ func fmtCommitPatch(commit *object.Commit) (final string, err error) { var date string var commitTitle, commitDetails string - if _, patch, err = get_patch_from_commit(commit); err != nil { + if _, patch, err = fmtCommitAsPatch(commit); err != nil { return "", err } |