Removed time date from dated logs

Use 'me' instead of login
This commit is contained in:
James Booth
2012-10-08 23:00:39 +01:00
parent 48936c0a95
commit ded57916e9
2 changed files with 4 additions and 4 deletions

View File

@@ -853,7 +853,7 @@ static void
_win_show_time(WINDOW *win)
{
GDateTime *time = g_date_time_new_now_local();
gchar *date_fmt = g_date_time_format(time, "%H:%M");
gchar *date_fmt = g_date_time_format(time, "%H:%M:%S");
wprintw(win, "%s - ", date_fmt);
g_date_time_unref(time);
g_free(date_fmt);