mirror of
https://github.com/YunoHost/apps.git
synced 2024-09-03 20:06:07 +02:00
use lstrip and rstrip instead of strip to fix some edge case
This commit is contained in:
parent
86bae45424
commit
cad70d7c94
1 changed files with 1 additions and 1 deletions
|
@ -300,7 +300,7 @@ class AppAutoUpdater:
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def tag_to_int_tuple(tag: str) -> tuple[int, ...]:
|
def tag_to_int_tuple(tag: str) -> tuple[int, ...]:
|
||||||
tag = tag.strip("v").replace("-", ".").strip(".")
|
tag = tag.lstrip("v").replace("-", ".").rstrip(".")
|
||||||
int_tuple = tag.split(".")
|
int_tuple = tag.split(".")
|
||||||
assert all(i.isdigit() for i in int_tuple), f"Cant convert {tag} to int tuple :/"
|
assert all(i.isdigit() for i in int_tuple), f"Cant convert {tag} to int tuple :/"
|
||||||
return tuple(int(i) for i in int_tuple)
|
return tuple(int(i) for i in int_tuple)
|
||||||
|
|
Loading…
Add table
Reference in a new issue