Skip to content
Snippets Groups Projects
Commit 63cd8436 authored by André Anjos's avatar André Anjos :speech_balloon:
Browse files

[webdav3] Fix minor typo

parent 3932cb1c
No related branches found
No related tags found
No related merge requests found
Pipeline #26976 passed
...@@ -67,7 +67,7 @@ def get_options(option_type, from_options): ...@@ -67,7 +67,7 @@ def get_options(option_type, from_options):
def wrap_connection_error(fn): def wrap_connection_error(fn):
@functools.wraps(fn) @functools.wraps(fn)
def _wrapper(self, *args, **kw): def _wrapper(self, *args, **kw):
log.debug("Requesting %s(%s, %s)", fn, args, kw) logger.debug("Requesting %s(%s, %s)", fn, args, kw)
try: try:
res = fn(self, *args, **kw) res = fn(self, *args, **kw)
except requests.ConnectionError: except requests.ConnectionError:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment