Skip to content

Commit 9a271c1

Browse files
committed
fix add root windows
1 parent f077005 commit 9a271c1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/search.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ def start(self):
219219
if os.name == 'nt':
220220
drives = [f"{d}:\\" for d in 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' if os.path.exists(f"{d}:\\")]
221221
for drive in drives:
222-
self.dir_queue.put(drive)
222+
self.dir_queue.add(DrillEntry(drive))
223223
else:
224224
# Add all self.roots to the queue
225225
for root in self.roots:

0 commit comments

Comments
 (0)