Browse Source

Fix tag references in builds

pull/6275/head
Rapptz 4 years ago
parent
commit
c09cf779a3
  1. 2
      docs/conf.py

2
docs/conf.py

@ -93,7 +93,7 @@ with open('../discord/__init__.py') as f:
release = version
# This assumes a tag is available for final releases
branch = 'master' if version.endswith('a') else version
branch = 'master' if version.endswith('a') else 'v' + version
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.

Loading…
Cancel
Save