summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--commands/user/user_show.go4
-rw-r--r--entities/bug/comment.go2
2 files changed, 3 insertions, 3 deletions
diff --git a/commands/user/user_show.go b/commands/user/user_show.go
index 0fbed190..eb302ce8 100644
--- a/commands/user/user_show.go
+++ b/commands/user/user_show.go
@@ -69,7 +69,7 @@ func runUserShow(env *execenv.Env, opts userShowOptions, args []string) error {
env.Out.Printf("%s\n", id.Id())
case "lastModification":
env.Out.Printf("%s\n", id.LastModification().
- Time().Format("Mon Jan 2 15:04:05 2006 +0200"))
+ Time().Format("Mon Jan 2 15:04:05 2006 -0700"))
case "lastModificationLamport":
for name, t := range id.LastModificationLamports() {
env.Out.Printf("%s\n%d\n", name, t)
@@ -92,7 +92,7 @@ func runUserShow(env *execenv.Env, opts userShowOptions, args []string) error {
env.Out.Printf("Name: %s\n", id.Name())
env.Out.Printf("Email: %s\n", id.Email())
env.Out.Printf("Login: %s\n", id.Login())
- env.Out.Printf("Last modification: %s\n", id.LastModification().Time().Format("Mon Jan 2 15:04:05 2006 +0200"))
+ env.Out.Printf("Last modification: %s\n", id.LastModification().Time().Format("Mon Jan 2 15:04:05 2006 -0700"))
env.Out.Printf("Last moditication (lamport):\n")
for name, t := range id.LastModificationLamports() {
env.Out.Printf("\t%s: %d", name, t)
diff --git a/entities/bug/comment.go b/entities/bug/comment.go
index 99da635d..32209fcb 100644
--- a/entities/bug/comment.go
+++ b/entities/bug/comment.go
@@ -45,7 +45,7 @@ func (c Comment) FormatTimeRel() string {
}
func (c Comment) FormatTime() string {
- return c.unixTime.Time().Format("Mon Jan 2 15:04:05 2006 +0200")
+ return c.unixTime.Time().Format("Mon Jan 2 15:04:05 2006 -0700")
}
// IsAuthored is a sign post method for gqlgen