Skip to content
Snippets Groups Projects

database constructor now accepts original_directory and original_extension

Closed Alain KOMATY requested to merge hackathon2017 into master
2 files
+ 2
4
Compare changes
  • Side-by-side
  • Inline
Files
2
+ 1
1
@@ -86,7 +86,7 @@ class File(Base, bob.db.base.File):
def __init__(self, image_name):
# call base class constructor
bob.db.base.File.__init__(self, file_id = image_name, path = image_name)
bob.db.base.File.__init__(self, path=image_name, file_id=image_name)
self.client_id = image_name[:5]
# get shot id
Loading