Skip to content

Commit

Permalink
Turn local path into a single string
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitriy-serdyuk authored and maximecb committed Aug 28, 2017
1 parent d923152 commit 3cdfb08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fuel/config_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ def add_config(self, key, type_, default=NOT_SET, env_var=None):
# Define configuration options
config.add_config('data_path', type_=multiple_paths_parser,
env_var='FUEL_DATA_PATH')
config.add_config('local_data_path', type_=multiple_paths_parser,
config.add_config('local_data_path', type_=str,
env_var='FUEL_LOCAL_DATA_PATH')
config.add_config('default_seed', type_=int, default=1)
config.add_config('extra_downloaders', type_=extra_downloader_converter,
Expand Down

0 comments on commit 3cdfb08

Please sign in to comment.