Index: trunk/tools/editor_trends/classes/storage.py |
— | — | @@ -175,8 +175,10 @@ |
176 | 176 | def retrieve_editors(self): |
177 | 177 | q = queue.JoinableRetryQueue() |
178 | 178 | cursor = self.find('editor') |
| 179 | + print 'Loading editors...' |
179 | 180 | for editor in cursor: |
180 | 181 | q.put(editor['editor']) |
| 182 | + print 'Finished loading editors...' |
181 | 183 | return q |
182 | 184 | |
183 | 185 | def retrieve_distinct_keys(self, key, force_new=False): |