summaryrefslogtreecommitdiff
path: root/lib/graph_commit.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/graph_commit.rb')
-rw-r--r--lib/graph_commit.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/graph_commit.rb b/lib/graph_commit.rb
index ef5e91c6870..0080e856402 100644
--- a/lib/graph_commit.rb
+++ b/lib/graph_commit.rb
@@ -96,7 +96,7 @@ class GraphCommit
h[:parents] = self.parents.collect do |p|
[p.id,0,0]
end
- h[:author] = author.name
+ h[:author] = author.name.force_encoding("UTF-8")
h[:time] = time
h[:space] = space
h[:refs] = refs.collect{|r|r.name}.join(" ") unless refs.nil?