chanigng name of unused variable

This commit is contained in:
Jake Dahn 2011-09-12 14:11:10 -07:00
parent ea8aa9a6bf
commit 354a5a5b49
1 changed files with 1 additions and 1 deletions

View File

@ -126,7 +126,7 @@ class FloatingIpAllocate(forms.SelfHandlingForm):
@login_required
def index(request, tenant_id):
for f in (ReleaseFloatingIp, FloatingIpDisassociate, FloatingIpAllocate):
_, handled = f.maybe_handle(request)
_unused, handled = f.maybe_handle(request)
if handled:
return handled
try: