aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDimitri Sokolyuk <demon@dim13.org>2016-07-18 16:40:14 +0200
committerDimitri Sokolyuk <demon@dim13.org>2016-07-18 16:40:14 +0200
commit63572a3375e64fe7260d00ea17345bf09ffc1472 (patch)
tree86887b267cc46105a92f45ca812f77ab839fbe7a
parent64cba9997afd0d7625ad7b3de31bc2cd366fa18a (diff)
fmt
-rw-r--r--meta/torrent.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/torrent.go b/meta/torrent.go
index 7f0ab7f..09d91ed 100644
--- a/meta/torrent.go
+++ b/meta/torrent.go
@@ -30,7 +30,7 @@ func (t Torrent) String() string {
s += fmt.Sprintf("comment: %s\n", t.Comment)
s += fmt.Sprintf("date: %s\n", t.CreationDate)
s += fmt.Sprintf("%v", t.Info)
- s += fmt.Sprintf("info hash: % x", t.Info.Hash())
+ s += fmt.Sprintf("info hash: %x", t.Info.Hash())
return s
}