Commit ee0d1190 authored by Seblu's avatar Seblu
Browse files

fix aurelien misunderstood epoch time in repository

parent 1e898695
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -209,7 +209,7 @@ class Repository(object):
             image_description, image_size) in images:
            out("#light##yellow#%s #reset#v%s" % (image_name, image_version))
            if verbose:
                out("  #yellow#Date:#reset# %s" % time.asctime(time.gmtime(image_date)))
                out("  #yellow#Date:#reset# %s" % time.ctime(image_date))
                out("  #yellow#Description:#reset# %s" % image_description)
                out("  #yellow#Author:#reset# %s" % image_author)
                out("  #yellow#MD5:#reset# %s" % image_md5)