From 953048422c339b5ea06d5d7c4d49bf6dce6b57f8 Mon Sep 17 00:00:00 2001 From: Evgenii Alekseev Date: Tue, 17 Feb 2026 01:18:36 +0200 Subject: [PATCH] bug: correct vcs definition for cvs packages --- src/ahriman/models/package.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ahriman/models/package.py b/src/ahriman/models/package.py index a88b955b..6665b2e3 100644 --- a/src/ahriman/models/package.py +++ b/src/ahriman/models/package.py @@ -155,7 +155,7 @@ class Package(LazyLogging): bool: ``True`` in case if package base looks like VCS package and ``False`` otherwise """ return self.base.endswith("-bzr") \ - or self.base.endswith("-csv") \ + or self.base.endswith("-cvs") \ or self.base.endswith("-darcs") \ or self.base.endswith("-git") \ or self.base.endswith("-hg") \