We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e2bf5a4 commit 6bcc9d0Copy full SHA for 6bcc9d0
1 file changed
fs/expose/dokan/__init__.py
@@ -33,7 +33,7 @@
33
spawning a new process, set the 'foreground' option::
34
35
>>> # This will block until the filesystem is unmounted
36
- >>> dokan.mount(fs, "Q", foreground=True)
+ >>> dokan.mount(fs, "Q:\\", foreground=True)
37
38
Any additional options for the Dokan process can be passed as keyword arguments
39
to the 'mount' function.
@@ -77,6 +77,7 @@
77
import datetime
78
import ctypes
79
from collections import deque
80
+from six.moves import range
81
82
from fs.base import threading
83
from fs.errors import *
@@ -100,9 +101,6 @@
100
101
import logging
102
logger = logging.getLogger("fs.expose.dokan")
103
-if six.PY3:
104
- xrange = range
105
-
106
107
# Options controlling the behavior of the Dokan filesystem
108
# Ouput debug message
0 commit comments