From b23b8ef2854610ef291396761874396231d5bc49 Mon Sep 17 00:00:00 2001 From: Brian Waldon Date: Thu, 8 Dec 2011 13:00:09 -0500 Subject: [PATCH] Add the missing column header to list-cached Fixes bug 901768 Change-Id: Ic313faba3587a2bfbc62bd81b6d6f5ad98a76ac5 --- bin/glance-cache-manage | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/glance-cache-manage b/bin/glance-cache-manage index 8fb8110ea7..3ec3a21531 100755 --- a/bin/glance-cache-manage +++ b/bin/glance-cache-manage @@ -24,7 +24,6 @@ import functools import gettext import optparse import os -import re import sys import time @@ -96,6 +95,7 @@ List all images currently cached""" pretty_table = utils.PrettyTable() pretty_table.add_column(36, label="ID") pretty_table.add_column(19, label="Last Accessed (UTC)") + pretty_table.add_column(19, label="Last Modified (UTC)") # 1 TB takes 13 characters to display: len(str(2**40)) == 13 pretty_table.add_column(14, label="Size", just="r") pretty_table.add_column(10, label="Hits", just="r")