Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
Textgrid Repository WebDAV Server
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
DARIAH-DE
TextGridRep
Textgrid Repository WebDAV Server
Commits
42ece562
Verified
Commit
42ece562
authored
3 years ago
by
Stefan Hynek
Browse files
Options
Downloads
Patches
Plain Diff
fix(dav-provider): correct log call string interpolation
parent
2fecfe36
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!14
Resolve "Show titles and format in repdav listing"
Pipeline
#278333
passed
3 years ago
Stage: test
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/repdav/textgrid_dav_provider.py
+1
-1
1 addition, 1 deletion
src/repdav/textgrid_dav_provider.py
with
1 addition
and
1 deletion
src/repdav/textgrid_dav_provider.py
+
1
−
1
View file @
42ece562
...
...
@@ -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
)
...
...
This diff is collapsed.
Click to expand it.
Stefan Hynek
@hynek
mentioned in commit
9dc9a589
·
3 years ago
mentioned in commit
9dc9a589
mentioned in commit 9dc9a589184fe7e34bbad69d7f4f562a101c7e9e
Toggle commit list
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment