Merge lp:~vishvananda/nova/fix-zipfile into lp:~hudson-openstack/nova/trunk

Proposed by Vish Ishaya
Status: Merged
Merge reported by: Eric Day
Merged at revision: not available
Proposed branch: lp:~vishvananda/nova/fix-zipfile
Merge into: lp:~hudson-openstack/nova/trunk
Diff against target: 11 lines (+1/-1)
1 file modified
bin/nova-manage (+1/-1)
To merge this branch: bzr merge lp:~vishvananda/nova/fix-zipfile
Reviewer Review Type Date Requested Status
Jesse Andrews (community) Approve
Devin Carlen (community) Approve
Review via email: mp+32627@code.launchpad.net

Commit message

Fixes bug lp:616312 by reversing the order of args in nova-manage when it calls AuthManager.get_credentials.

Description of the change

Fixes bug lp:616312 by reversing the order of args in nova-manage when it calls AuthManager.get_credentials.

To post a comment you must log in.
Revision history for this message
Devin Carlen (devcamcar) wrote :

lgtm

review: Approve
Revision history for this message
Jesse Andrews (anotherjesse) wrote :

lgtm

review: Approve
Revision history for this message
OpenStack Infra (hudson-openstack) wrote :

There is no resulting diff between lp:~vishvananda/nova/fix-zipfile and lp:nova.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'bin/nova-manage'
2--- bin/nova-manage 2010-08-10 17:25:52 +0000
3+++ bin/nova-manage 2010-08-13 21:14:39 +0000
4@@ -206,7 +206,7 @@
5 def zipfile(self, project_id, user_id, filename='nova.zip'):
6 """Exports credentials for project to a zip file
7 arguments: project_id user_id [filename='nova.zip]"""
8- zip_file = self.manager.get_credentials(project_id, user_id)
9+ zip_file = self.manager.get_credentials(user_id, project_id)
10 with open(filename, 'w') as f:
11 f.write(zip_file)
12