From ac380b92b0dd90c5e396478c1961aa227ba11058 Mon Sep 17 00:00:00 2001 From: daniel-a-nguyen Date: Sun, 10 Feb 2013 16:38:41 -0800 Subject: [PATCH] Use _pretty_list instead of _pretty_print Fixes bug # 1097088 Change-Id: I403b0509b608e97868160271f61706f6113ab409 --- reddwarfclient/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reddwarfclient/cli.py b/reddwarfclient/cli.py index f7418a85..a2fad584 100644 --- a/reddwarfclient/cli.py +++ b/reddwarfclient/cli.py @@ -197,7 +197,7 @@ class VersionCommands(common.AuthedCommandsBase): def list(self): """List all the supported versions""" self._require('url') - self._pretty_print(self.dbaas.versions.index, self.url) + self._pretty_list(self.dbaas.versions.index, self.url) COMMANDS = {'auth': common.Auth,