components/python/novaclient/patches/01-novaclient-migration-list.patch
branchs11u2-sru
changeset 4156 4b1def16fe9b
child 6035 c9748fcc32de
equal deleted inserted replaced
4146:097063f324c0 4156:4b1def16fe9b
       
     1 # Patch to prevent nova migration-list from generating an error.
       
     2 # This patch has not yet been submitted upstream. 
       
     3 
       
     4 --- python-novaclient-2.20.0/novaclient/base.py.~1~	2014-09-20 15:12:42.000000000 -0700
       
     5 +++ python-novaclient-2.20.0/novaclient/base.py	2014-12-13 14:26:17.459463436 -0800
       
     6 @@ -76,7 +76,7 @@ class Manager(utils.HookableMixin):
       
     7              try:
       
     8                  data = data['values']
       
     9              except KeyError:
       
    10 -                pass
       
    11 +                data = []
       
    12  
       
    13          self._clear_completion_cache_for_class(obj_class)
       
    14