Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
pyfs
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenEdx
pyfs
Commits
d7759718
Commit
d7759718
authored
Sep 06, 2010
by
rfkelly0
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix varname typo in DAVFS
parent
0da00e19
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
fs/contrib/davfs/__init__.py
+2
-2
No files found.
fs/contrib/davfs/__init__.py
View file @
d7759718
...
@@ -530,7 +530,7 @@ class DAVFS(FS):
...
@@ -530,7 +530,7 @@ class DAVFS(FS):
if
response
.
status
==
409
:
if
response
.
status
==
409
:
raise
ParentDirectoryMissingError
(
dst
)
raise
ParentDirectoryMissingError
(
dst
)
if
response
.
status
<
200
or
response
.
status
>=
300
:
if
response
.
status
<
200
or
response
.
status
>=
300
:
raise_generic_error
(
response
,
"copy"
,
path
)
raise_generic_error
(
response
,
"copy"
,
src
)
def
move
(
self
,
src
,
dst
,
overwrite
=
False
,
chunk_size
=
None
):
def
move
(
self
,
src
,
dst
,
overwrite
=
False
,
chunk_size
=
None
):
if
self
.
isdir
(
src
):
if
self
.
isdir
(
src
):
...
@@ -557,7 +557,7 @@ class DAVFS(FS):
...
@@ -557,7 +557,7 @@ class DAVFS(FS):
if
response
.
status
==
409
:
if
response
.
status
==
409
:
raise
ParentDirectoryMissingError
(
dst
)
raise
ParentDirectoryMissingError
(
dst
)
if
response
.
status
<
200
or
response
.
status
>=
300
:
if
response
.
status
<
200
or
response
.
status
>=
300
:
raise_generic_error
(
response
,
"move"
,
path
)
raise_generic_error
(
response
,
"move"
,
src
)
@staticmethod
@staticmethod
def
_split_xattr
(
name
):
def
_split_xattr
(
name
):
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment