213 |
213 |
214 found = False |
214 found = False |
215 self.fileList.clear() |
215 self.fileList.clear() |
216 locations = {} |
216 locations = {} |
217 |
217 |
218 for in_order, age, name in ordered: |
218 for _in_order, _age, name in ordered: |
219 found = True |
219 found = True |
220 QTreeWidgetItem(self.fileList, [os.path.basename(name), |
220 QTreeWidgetItem(self.fileList, [os.path.basename(name), |
221 os.path.dirname(name)]) |
221 os.path.dirname(name)]) |
222 QApplication.processEvents() |
222 QApplication.processEvents() |
223 |
223 |