diff options
author | Dan McGee <dan@archlinux.org> | 2013-01-16 00:18:26 -0600 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2013-01-16 00:18:26 -0600 |
commit | 1f9aef78f39c90191eddf2233c278086a15052de (patch) | |
tree | fa1e5fadeff99e1a0164f5d932202be9c7034c1a /mirrors/views.py | |
parent | 06129da6bfcfe7c0904559a4326e323286bdcc30 (diff) |
Remove debugging print statement
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'mirrors/views.py')
-rw-r--r-- | mirrors/views.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/mirrors/views.py b/mirrors/views.py index c0ed6670..56397633 100644 --- a/mirrors/views.py +++ b/mirrors/views.py @@ -181,7 +181,6 @@ def mirror_details(request, name): all_urls = set(mirror.urls.select_related('protocol')) # Add dummy data for URLs that we haven't checked recently other_urls = all_urls.difference(checked_urls) - print other_urls for url in other_urls: for attr in ('last_sync', 'completion_pct', 'delay', 'duration_avg', 'duration_stddev', 'score'): |