Fix for ussuri
The ussuri branch of the pythonclient wasn't working, as the map
needed to be converted back into a list. This patch fixes that.
Change-Id: I04f9a282462081ab7ebe29c9e9c90cb032898d5f
(cherry picked from commit 7ada9d9a78)
			
			
This commit is contained in:
		@@ -934,8 +934,8 @@ class GBPShell(app.App):
 | 
			
		||||
 | 
			
		||||
def main(argv=sys.argv[1:]):
 | 
			
		||||
    try:
 | 
			
		||||
        return GBPShell(NEUTRON_API_VERSION).run(map(encodeutils.safe_decode,
 | 
			
		||||
                                                     argv))
 | 
			
		||||
        return GBPShell(NEUTRON_API_VERSION).run(
 | 
			
		||||
            list(map(encodeutils.safe_decode, argv)))
 | 
			
		||||
    except exc.NeutronClientException:
 | 
			
		||||
        return 1
 | 
			
		||||
    except Exception as e:
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user