summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/commit/models.rs5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/commit/models.rs b/src/commit/models.rs
index 987bcd2..95d2efa 100644
--- a/src/commit/models.rs
+++ b/src/commit/models.rs
@@ -116,7 +116,10 @@ impl Commit {
commit.author_email,
commit.author_name.replace("\\'", "'").replace("'", "\\'"),
commit.committer_email,
- commit.committer_name.replace("\\'", "'").replace("'", "\\'"),
+ commit
+ .committer_name
+ .replace("\\'", "'")
+ .replace("'", "\\'"),
commit.repository_url
)[..]
}