Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
bob
bob.bio.video
Commits
26a94a36
Commit
26a94a36
authored
Nov 08, 2017
by
Olegs NIKISINS
Browse files
Fixed tuple indexing bug in youtube db load function
parent
2acbfd5a
Pipeline
#13905
passed with stages
in 14 minutes and 38 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
bob/bio/video/database/youtube.py
View file @
26a94a36
...
...
@@ -38,7 +38,7 @@ class YoutubeBioFile(VideoBioFile):
fc
=
FrameContainer
()
files
=
self
.
files
(
directory
,
extension
)
for
f
in
frame_selector
(
files
):
file_name
=
os
.
path
.
join
(
self
.
make_path
(
directory
,
''
),
f
)
file_name
=
os
.
path
.
join
(
self
.
make_path
(
directory
,
''
),
f
[
0
]
)
fc
.
add
(
os
.
path
.
basename
(
file_name
),
bob
.
io
.
base
.
load
(
file_name
))
return
fc
else
:
...
...
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