Stick prettytable at v0.6

Doing this so we can align columns reliably

Change-Id: Ibdbc6f3df08d6f9c45b6e0a0f5a2440ba2637dbd
This commit is contained in:
Brian Waldon
2012-06-07 14:41:14 -07:00
parent 0935e38113
commit 2822748bc1
2 changed files with 2 additions and 2 deletions

View File

@@ -38,7 +38,7 @@ def pretty_choice_list(l):
def print_list(objs, fields, formatters={}): def print_list(objs, fields, formatters={}):
pt = prettytable.PrettyTable([f for f in fields], caching=False) pt = prettytable.PrettyTable([f for f in fields], caching=False)
pt.aligns = ['l' for f in fields] pt.align = 'l'
for o in objs: for o in objs:
row = [] row = []

View File

@@ -1,5 +1,5 @@
argparse argparse
httplib2 httplib2
prettytable prettytable==0.6
https://github.com/openstack/python-keystoneclient/zipball/master#egg=python-keystoneclient https://github.com/openstack/python-keystoneclient/zipball/master#egg=python-keystoneclient