From bb2fc14865a233ef86a71d4925cfe4c64ea1a4b3 Mon Sep 17 00:00:00 2001 From: macbeth76 Date: Thu, 7 May 2015 16:55:28 -0400 Subject: [PATCH] Update user.py M in date format is minutes. m is for months. --- system/user.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/user.py b/system/user.py index ee309d10973..dd141565bde 100755 --- a/system/user.py +++ b/system/user.py @@ -239,7 +239,7 @@ class User(object): platform = 'Generic' distribution = None SHADOWFILE = '/etc/shadow' - DATE_FORMAT = '%Y-%M-%d' + DATE_FORMAT = '%Y-%m-%d' def __new__(cls, *args, **kwargs): return load_platform_subclass(User, args, kwargs)