diff options
author | Glenn Glazer <coyot@lindenlab.com> | 2016-06-27 16:20:10 -0700 |
---|---|---|
committer | Glenn Glazer <coyot@lindenlab.com> | 2016-06-27 16:20:10 -0700 |
commit | cb90597b4e6fa64db706d6341039ade3c6d09a5b (patch) | |
tree | b9786a00e47747381a956c69cb0661521b1d2257 /indra/viewer_components | |
parent | e01f6168993af377b2a625176efff95b498b5d21 (diff) |
remove extraneous comments
Diffstat (limited to 'indra/viewer_components')
-rwxr-xr-x | indra/viewer_components/manager/download_update.py | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/indra/viewer_components/manager/download_update.py b/indra/viewer_components/manager/download_update.py index aa8555cd21..71da5c97c2 100755 --- a/indra/viewer_components/manager/download_update.py +++ b/indra/viewer_components/manager/download_update.py @@ -43,14 +43,6 @@ def download_update(url = None, download_dir = None, size = None, progressbar = #total size (for progressbar) of download #progressbar: whether to display one (not used for background downloads) #chunk_size is in bytes - #in_queue is to communicate between download_update and the thread - #out_queue is to communicate between the thread and the progressbar - #if progressbar: - #out_queue = Queue.Queue() - #buffer_thread = ThreadedBuffer(size, in_queue, out_queue) - #buffer_thread.start() - #pb_thread = ThreadedBar(size, out_queue) - #pb_thread.start() queue = Queue.Queue() filename = os.path.join(download_dir, url.split('/')[-1]) |