Skip to content

Commit

Permalink
Fixes dev sample config path
Browse files Browse the repository at this point in the history
  • Loading branch information
hfjn committed Jul 5, 2019
1 parent e35b0d6 commit 8baf6d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion esque/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def config_path() -> Path:

def sample_config_path() -> Path:
if ESQUE_ENV == "dev":
return Path(__file__).parent.parent / "config" / "sample_config.cfg"
return Path(__file__).parent / "config" / "sample_config.cfg"
return Path(get_python_lib()) / "esque" / "config" / "sample_config.cfg"


Expand Down

0 comments on commit 8baf6d3

Please sign in to comment.