fix: #1631: fix pyproject toml indentation

Signed-off-by: Harsha Narayana <harsha2k4@gmail.com>
This commit is contained in:
Harsha Narayana 2019-07-24 04:28:11 +05:30
parent 95a0b2db2c
commit 3842eb36fd
No known key found for this signature in database
GPG Key ID: 8AF211CB60D4B28C
2 changed files with 23 additions and 23 deletions

View File

@ -1,33 +1,33 @@
[tool.towncrier] [tool.towncrier]
package = "sanic" package = "sanic"
package_dir = "." package_dir = "."
filename = "../CHANGELOG.rst" filename = "../CHANGELOG.rst"
directory = "./changelogs" directory = "./changelogs"
underlines = ["=", "*", "~"] underlines = ["=", "*", "~"]
issue_format = "`#{issue} <https://github.com/huge-success/sanic/issues/{issue}>`__" issue_format = "`#{issue} <https://github.com/huge-success/sanic/issues/{issue}>`__"
title_format = "Version {version}" title_format = "Version {version}"
[[tool.towncrier.type]] [[tool.towncrier.type]]
directory = "feature" directory = "feature"
name = "Features" name = "Features"
showcontent = true showcontent = true
[[tool.towncrier.type]] [[tool.towncrier.type]]
directory = "bugfix" directory = "bugfix"
name = "Bugfixes" name = "Bugfixes"
showcontent = true showcontent = true
[[tool.towncrier.type]] [[tool.towncrier.type]]
directory = "doc" directory = "doc"
name = "Improved Documentation" name = "Improved Documentation"
showcontent = true showcontent = true
[[tool.towncrier.type]] [[tool.towncrier.type]]
directory = "removal" directory = "removal"
name = "Deprecations and Removals" name = "Deprecations and Removals"
showcontent = true showcontent = true
[[tool.towncrier.type]] [[tool.towncrier.type]]
directory = "misc" directory = "misc"
name = "Miscellaneous internal changes" name = "Miscellaneous internal changes"
showcontent = true showcontent = true

View File

@ -314,5 +314,5 @@ if __name__ == "__main__":
required=False, required=False,
) )
args = cli.parse_args() args = cli.parse_args()
with Directory() as _: with Directory():
release(args) release(args)