summaryrefslogtreecommitdiff
path: root/prettyFormat.go
diff options
context:
space:
mode:
Diffstat (limited to 'prettyFormat.go')
-rw-r--r--prettyFormat.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/prettyFormat.go b/prettyFormat.go
index ab2c845..e0405b3 100644
--- a/prettyFormat.go
+++ b/prettyFormat.go
@@ -94,7 +94,7 @@ func printLeftAligned(author, timestamp, content string) {
}
func printRightAligned(author, timestamp, content string) {
- prefix := fmt.Sprintf(":(%%s) %%s ✦", timestamp, author)
+ prefix := fmt.Sprintf("(%s) %s ✦", timestamp, author)
// Print the prefix first, right-aligned.
fmt.Printf("%*s\n", termWidth, prefix)