We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f077005 commit 9a271c1Copy full SHA for 9a271c1
src/search.py
@@ -219,7 +219,7 @@ def start(self):
219
if os.name == 'nt':
220
drives = [f"{d}:\\" for d in 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' if os.path.exists(f"{d}:\\")]
221
for drive in drives:
222
- self.dir_queue.put(drive)
+ self.dir_queue.add(DrillEntry(drive))
223
else:
224
# Add all self.roots to the queue
225
for root in self.roots:
0 commit comments