Skip to content

Commit 041c5a2

Browse files
committed
fixed test suite
1 parent 5e1cabd commit 041c5a2

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

HISTORY.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
Release notes
22
=============
33

4+
0.3.7 (2019/04/29)
5+
------------------
6+
- fixed testsuite
7+
[ajung]
8+
49
0.3.6 (2019/04/29)
510
------------------
611
- support for webdavs:// opener protocol

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,5 +49,5 @@
4949
tests_require=['docker'],
5050
test_suite='webdavfs.tests',
5151
url="http://pypi.python.org/pypi/fs.webdavfs/",
52-
version="0.3.6"
52+
version="0.3.7"
5353
)

webdavfs/webdavfs.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -303,8 +303,8 @@ def openbin(self, path, mode='r', buffering=-1, **options):
303303
else:
304304
if info.is_dir:
305305
raise errors.FileExpected(path)
306-
if _mode.exclusive:
307-
raise errors.FileExists(path)
306+
if _mode.exclusive:
307+
raise errors.FileExists(path)
308308
return WebDAVFile(self, _path, _mode)
309309

310310
def remove(self, path):

0 commit comments

Comments
 (0)