Skip to content

Commit f83997b

Browse files
committed
fix
1 parent 03e7d34 commit f83997b

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

webdavfs/opener.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,7 @@ def open_fs(self, fs_url, parse_result, writeable, create, cwd):
2121

2222
return WebDAVFS(
2323
url='http://{}:{}'.format(webdav_host, webdav_port),
24-
login: parse_result.username,
25-
password: parse_result.password
26-
},
24+
login=parse_result.username,
25+
password=parse_result.password
2726
root=dir_path,
2827
)

0 commit comments

Comments
 (0)