8000 Merge pull request #792 from larsks/bug/791 · larsks/micropython@61d3dd8 · GitHub
[go: up one dir, main page]

Skip to content

Commit 61d3dd8

Browse files
authored
Merge pull request micropython#792 from larsks/bug/791
correct path to conf.py in makeversionhdr.py
2 parents dd0f868 + 4e977aa commit 61d3dd8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

py/makeversionhdr.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def get_version_info_from_git():
5252
return git_tag, git_hash, ver
5353

5454
def get_version_info_from_docs_conf():
55-
with open(os.path.join(os.path.dirname(sys.argv[0]), "..", "docs", "conf.py")) as f:
55+
with open(os.path.join(os.path.dirname(sys.argv[0]), "..", "conf.py")) as f:
5656
for line in f:
5757
if line.startswith("version = release = '"):
5858
ver = line.strip().split(" = ")[2].strip("'")

0 commit comments

Comments
 (0)
0