Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
bob.bio.face
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
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
bob
bob.bio.face
Commits
9453bff7
There was a problem fetching the pipeline summary.
Commit
9453bff7
authored
8 years ago
by
Manuel Günther
Browse files
Options
Downloads
Patches
Plain Diff
Use client id instead of id for IJBA file
parent
97666f68
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!25
Resolve "IJB-A database implemented incorrectly"
Pipeline
#
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
bob/bio/face/database/ijba.py
+1
-1
1 addition, 1 deletion
bob/bio/face/database/ijba.py
with
1 addition
and
1 deletion
bob/bio/face/database/ijba.py
+
1
−
1
View file @
9453bff7
...
...
@@ -21,7 +21,7 @@ class IJBABioFile(FaceBioFile):
def
make_path
(
self
,
directory
,
extension
):
# add file ID to the path, so that a unique path is generated (there might be several identities in each physical file)
return
str
(
os
.
path
.
join
(
directory
or
''
,
self
.
path
+
"
-
"
+
str
(
self
.
id
)
+
(
extension
or
''
)))
return
str
(
os
.
path
.
join
(
directory
or
''
,
self
.
path
+
"
-
"
+
str
(
self
.
client_
id
)
+
(
extension
or
''
)))
class
IJBABioFileSet
(
BioFileSet
):
...
...
This diff is collapsed.
Click to expand it.
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