Skip to content

Commit

Permalink
Fix incorrect path of __version__.py in sphinx conf.py
Browse files Browse the repository at this point in the history
  • Loading branch information
willprice committed Apr 28, 2019
1 parent b209448 commit 6e76f2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@


about = {}
with open(Path(__file__).parent.parent / 'src' / 'flowty' / '__version__.py', 'r') as f:
with open(Path(__file__).parent.parent.parent / 'src' / 'flowty' / '__version__.py', 'r') as f:
exec(f.read(), about)

project = about['__title__'].capitalize()
Expand Down

0 comments on commit 6e76f2e

Please sign in to comment.