diff options
Diffstat (limited to 'commands/user.go')
-rw-r--r-- | commands/user.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/commands/user.go b/commands/user.go index daf9e654..c4208d41 100644 --- a/commands/user.go +++ b/commands/user.go @@ -36,6 +36,9 @@ func runUser(cmd *cobra.Command, args []string) error { fmt.Printf("Name: %s\n", id.Name()) fmt.Printf("Login: %s\n", id.Login()) fmt.Printf("Email: %s\n", id.Email()) + fmt.Printf("Last modification: %s (lamport %d)\n", + id.LastModification().Time().Format("Mon Jan 2 15:04:05 2006 +0200"), + id.LastModificationLamport()) // fmt.Printf("Protected: %v\n", id.IsProtected()) return nil |