Skip to content
Snippets Groups Projects
Verified Commit 42ece562 authored by Stefan Hynek's avatar Stefan Hynek :drooling_face:
Browse files

fix(dav-provider): correct log call string interpolation

parent 2fecfe36
No related branches found
No related tags found
1 merge request!14Resolve "Show titles and format in repdav listing"
Pipeline #278333 passed
......@@ -264,7 +264,7 @@ class TextgridResource(DAVNonCollection):
return self._info[self.name]["format"]
def get_content(self):
_logger.debug("Called TextgridResource.get_content(self) with path:", self.path)
_logger.debug("Called TextgridResource.get_content(self) with path: %s", self.path)
config = TextgridConfig()
crud = TextgridCRUD(config.crud)
return io.BytesIO(crud.read_data(self.path.split("/")[-1], self._sid).content)
......
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