1
0
mirror of https://github.com/openSUSE/osc.git synced 2025-09-05 20:58:42 +02:00

Fix 'buildhistory' command by setting the type of the '--limit' option to int

This commit is contained in:
2023-04-17 15:31:46 +02:00
parent e299ab98bd
commit 9926791bf0
3 changed files with 7 additions and 2 deletions

View File

@@ -20,7 +20,7 @@ class BuildHistory:
self.package = package
self.repository = repository
self.arch = arch
self._limit = limit
self._limit = int(limit)
self.entries = self._get_entries()
def _get_entries(self):