Skip to content

Commit

Permalink
Add the missing column header to list-cached
Browse files Browse the repository at this point in the history
Fixes bug 901768

Change-Id: Ic313faba3587a2bfbc62bd81b6d6f5ad98a76ac5
  • Loading branch information
Brian Waldon committed Dec 8, 2011
1 parent 07dcb32 commit b23b8ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/glance-cache-manage
Expand Up @@ -24,7 +24,6 @@ import functools
import gettext
import optparse
import os
import re
import sys
import time

Expand Down Expand Up @@ -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")
Expand Down

0 comments on commit b23b8ef

Please sign in to comment.