diff options
| author | Seth Vidal <skvidal@fedoraproject.org> | 2012-12-14 04:51:35 +0000 |
|---|---|---|
| committer | Seth Vidal <skvidal@fedoraproject.org> | 2012-12-14 04:51:35 +0000 |
| commit | 3e464e3fae2e1a09eb12ca911a2edcc939962fa3 (patch) | |
| tree | bb2c2b2fd6f321750cf5e193ab2e4a47188627a3 /scripts | |
| parent | ef53658c7fd8a8a979a97e14a78a8e8c6928087d (diff) | |
| download | ansible-3e464e3fae2e1a09eb12ca911a2edcc939962fa3.tar.gz ansible-3e464e3fae2e1a09eb12ca911a2edcc939962fa3.tar.xz ansible-3e464e3fae2e1a09eb12ca911a2edcc939962fa3.zip | |
fix up the describe-instances script to work with rhel6 prettytable
Diffstat (limited to 'scripts')
| -rwxr-xr-x | scripts/describe-instances | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/describe-instances b/scripts/describe-instances index d3679a6ed..5dfbefca9 100755 --- a/scripts/describe-instances +++ b/scripts/describe-instances @@ -69,7 +69,7 @@ if __name__ == '__main__': net = '%s' % i.ip_address pt.add_row([r.id, i.id, accts[r.owner_id], i.state, net, i.key_name, i.instance_type, start]) - pt.printt(sortby='start', reversesort=True) + print pt.get_string(sortby='start', reversesort=True) |
