diff options
author | Dan McGee <dan@archlinux.org> | 2013-01-16 07:18:26 +0100 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2013-01-16 07:18:26 +0100 |
commit | 1f9aef78f39c90191eddf2233c278086a15052de (patch) | |
tree | fa1e5fadeff99e1a0164f5d932202be9c7034c1a | |
parent | 06129da6bfcfe7c0904559a4326e323286bdcc30 (diff) | |
download | archweb-1f9aef78f39c90191eddf2233c278086a15052de.tar.gz archweb-1f9aef78f39c90191eddf2233c278086a15052de.tar.xz |
Remove debugging print statement
Signed-off-by: Dan McGee <dan@archlinux.org>
-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 c0ed667..5639763 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'): |