Skip to content
Snippets Groups Projects
Commit f11caa2a authored by Tiago de Freitas Pereira's avatar Tiago de Freitas Pereira
Browse files

Fixed bug with the path

parent 3da3a026
No related branches found
No related tags found
1 merge request!34Resolve "Reading original data from IJB-A"
Pipeline #
......@@ -30,7 +30,7 @@ class IJBABioFile(FaceBioFile):
path = "%s-%s%s" % (self.path, self.client_id, extension or '')
else:
# do not add the client ID to be able to obtain the original image file
path = "%s%s" % (self.path, self.client_id, extension or '')
path = "%s%s" % (self.path, extension or '')
return str(os.path.join(directory or '', path))
......
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