Skip to content

Commit

Permalink
Merge pull request #321 from informatics-lab/fix-database-prefix-dire…
Browse files Browse the repository at this point in the history
…ctory

Fix database prefix directory
  • Loading branch information
andrewgryan committed Mar 27, 2020
2 parents 51eb7f8 + d32131c commit 8a2db60
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion forest/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
.. automodule:: forest.presets
"""
__version__ = '0.13.3'
__version__ = '0.13.4'

from .config import *
from . import (
Expand Down
1 change: 1 addition & 0 deletions forest/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ def main(argv=None):
"pattern": group.pattern,
"locator": group.locator,
"database_path": group.database_path,
"directory": group.directory,
"color_mapper": color_mapper,
}
dataset = drivers.get_dataset(group.file_type, settings)
Expand Down
1 change: 1 addition & 0 deletions forest/navigate.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ def _from_group(cls, group, color_mapper=None):
"pattern": group.pattern,
"locator": group.locator,
"database_path": group.database_path,
"directory": group.directory,
"color_mapper": color_mapper,
}
dataset = drivers.get_dataset(group.file_type, settings)
Expand Down

0 comments on commit 8a2db60

Please sign in to comment.