Skip to content

Commit 4121ac9

Browse files
a-detisteandrewleech
authored andcommitted
remove more six compatibility layer
1 parent f3c175f commit 4121ac9

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

pywebdav/lib/davcmd.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
99
"""
1010

11-
import urllib.parser
11+
import urllib.parse
1212

1313
from .utils import create_treelist, is_prefix
1414
from .errors import DAV_Error, DAV_NotFound

pywebdav/server/fshandler.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
from io import StringIO
77
import urllib.parse
88
from pywebdav.lib.constants import COLLECTION, OBJECT
9-
from pywebdav.lib.errors import DAV_Error, DAV_Forbidden, DAV_NotFound
10-
from pywebdav.lib.iface import DAV_Requested_Range_Not_Satisfiable, DAV_Secret
9+
from pywebdav.lib.errors import DAV_Error, DAV_Forbidden, DAV_NotFound, DAV_Requested_Range_Not_Satisfiable, DAV_Secret
10+
from pywebdav.lib.iface import dav_interface
1111
from pywebdav.lib.davcmd import copyone, copytree, moveone, movetree, delone, deltree
1212
from html import escape
1313

0 commit comments

Comments
 (0)