Skip to content

Commit

Permalink
readme: fixed defaults interpolation in example
Browse files Browse the repository at this point in the history
  • Loading branch information
glorpen committed Mar 3, 2020
1 parent dfd8a5c commit 7dad3e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ Your first step should be defining configuration schema:
spec = fs.Dict({
"project_path": fb.Optional(fs.Path(), default=project_path),
"project_cache_path": fb.Optional(fs.Path(), default="{{ project_path }}/cache"),
"project_cache_path": fb.Optional(fs.Path(), default=project_path + "/cache"),
"logging": LogLevel(default=logging.INFO),
"database": fs.String(),
"sources": fs.Dict({
Expand Down

0 comments on commit 7dad3e1

Please sign in to comment.