Skip to content

Commit

Permalink
fix path to version file
Browse files Browse the repository at this point in the history
  • Loading branch information
lukesmith committed Jul 15, 2015
1 parent 917b504 commit 2567f2a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,9 @@
# built documents.
#
# The short X.Y version.
version = open("hestia/_version.py").readlines()[-1].split()[-1].strip("\"'")
version = open("../hestia/_version.py").readlines()[-1].split()[-1].strip("\"'")
# The full version, including alpha/beta/rc tags.
release = open("hestia/_version.py").readlines()[-1].split()[-1].strip("\"'")
release = open("../hestia/_version.py").readlines()[-1].split()[-1].strip("\"'")

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down

0 comments on commit 2567f2a

Please sign in to comment.