not .as_string()
This commit is contained in:
parent
921890c6e9
commit
4c04ef911c
1 changed files with 1 additions and 1 deletions
|
@ -169,7 +169,7 @@ def bump_revision(request: Request, pr_infos: dict) -> HTTPResponse:
|
|||
|
||||
manifest_file = (folder / "manifest.toml")
|
||||
manifest = tomlkit.load(manifest_file.open("r", encoding="utf-8"))
|
||||
version, revision = manifest["version"].as_string().split("~ynh")
|
||||
version, revision = manifest["version"].split("~ynh")
|
||||
revision = str(int(revision) + 1)
|
||||
manifest["version"] = "~ynh".join([version, revision])
|
||||
tomlkit.dump(manifest, manifest_file.open("w", encoding="utf-8"))
|
||||
|
|
Loading…
Reference in a new issue