Admin - Use GraphQL to find PR, instead of commit msg (#3792)

This commit is contained in:
Bert Blommers 2021-03-21 10:18:53 +00:00 committed by GitHub
commit 5aa8d03a59
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 34 additions and 4 deletions

View file

@ -95,7 +95,7 @@ def prerelease_version():
assert (
initpy_ver > ver
), "the moto/__init__.py version should be newer than the last tagged release."
return "{initpy_ver}.{commits_since}".format(
return "{initpy_ver}{commits_since}".format(
initpy_ver=initpy_ver, commits_since=commits_since
)