# HG changeset patch # User Padma Dakoju # Date 1409072741 21600 # Node ID f97e212983b2f7c3450368ca48d1250215eab0d9 # Parent e712a3010964dfee0e432036ec1528c3f7a4a0d5 19439030 'nova migration-list' returns python error diff -r e712a3010964 -r f97e212983b2 components/python/novaclient/patches/01-novaclient-migration-list.patch --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/components/python/novaclient/patches/01-novaclient-migration-list.patch Tue Aug 26 11:05:41 2014 -0600 @@ -0,0 +1,15 @@ +# Patch to prevent nova migration-list from generating an error. +# This patch has not yet been submitted upstream. + +--- python-novaclient-2.17.0/novaclient/base.py.orig 2014-08-22 16:12:58.186693128 -0600 ++++ python-novaclient-2.17.0/novaclient/base.py 2014-08-22 16:16:19.119321660 -0600 +@@ -73,7 +73,7 @@ + try: + data = data['values'] + except KeyError: +- pass ++ data = [] + + with self.completion_cache('human_id', obj_class, mode="w"): + with self.completion_cache('uuid', obj_class, mode="w"): +