From d90fcd9b6763f62c19b8f916a5b446a38e9218e0 Mon Sep 17 00:00:00 2001 From: Mürsel Türk Date: Tue, 30 Aug 2022 12:27:56 +0200 Subject: Remove limit on output --- tools/inspect_apps.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/tools/inspect_apps.py b/tools/inspect_apps.py index 94a8768..58f0f0f 100644 --- a/tools/inspect_apps.py +++ b/tools/inspect_apps.py @@ -79,10 +79,7 @@ def list_applications_deb(path): with open(dpkg_db) as f: name = version = "" installed = False - count = 0 for line in f: - if count >= 10: - break line = line.strip() if not line: if name and version and installed: @@ -90,7 +87,6 @@ def list_applications_deb(path): "name": name, "version": version }) - count += 1 name = version = "" installed = False elif line.startswith("Package:"): -- cgit v1.2.3-55-g7522