diff options
author | Ismael Carnales <icarnales@gmail.com> | 2009-10-31 13:29:12 -0200 |
---|---|---|
committer | Ismael Carnales <icarnales@gmail.com> | 2009-11-09 22:24:47 -0200 |
commit | 0b87e768917c59b40fa757381d009b7a05c2ee3a (patch) | |
tree | 6454cd47d6051cf1ea06ce9e5c1889c27284aac3 /mirrors | |
parent | 6243f7ba662b39c25835c65b6641531e8c66c95f (diff) |
fixed error in mirrors.views.choose
Diffstat (limited to 'mirrors')
-rw-r--r-- | mirrors/views.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mirrors/views.py b/mirrors/views.py index 5ad522bf..80b5eb18 100644 --- a/mirrors/views.py +++ b/mirrors/views.py @@ -31,8 +31,8 @@ def choose(request): kwargs = {'arch' : arch, 'country' : country })) else: form = MirrorlistForm() - return render_to_response('mirrors/index.html', - {'mirrorlist_form': form}) + + return render_to_response('mirrors/index.html', {'mirrorlist_form': form}) def generate(request, arch='i686', country=None): # do a quick sanity check on the architecture |