Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/cygwin-apps/calm.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJon Turney <jon.turney@dronecode.org.uk>2023-01-19 16:13:17 +0300
committerJon Turney <jon.turney@dronecode.org.uk>2023-01-19 19:24:20 +0300
commitd77b94da78034219f9b5d89ecfe4fc24562cd344 (patch)
tree6be043ba19704e2ec7285e3cc786bf5613007131 /calm/pkg2html.py
parentad6b47c27b1113abacdfebf7234d38b6524606cd (diff)
Propagate any error reading packages through mksetupini
At the moment, calm.process_relarea() is expected to keep going, although we might later fail due to package set validation problemss. (In particular tests just assume that we ignore various problematic packages, although we don't actually check that they are being rejected with the epxected problem)
Diffstat (limited to 'calm/pkg2html.py')
-rwxr-xr-xcalm/pkg2html.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/calm/pkg2html.py b/calm/pkg2html.py
index 2194a05..2a0d25d 100755
--- a/calm/pkg2html.py
+++ b/calm/pkg2html.py
@@ -573,5 +573,5 @@ if __name__ == "__main__":
logging.basicConfig(format=os.path.basename(sys.argv[0]) + ': %(message)s')
- packages = package.read_packages(args.rel_area, args.arch)
+ packages, _ = package.read_packages(args.rel_area, args.arch)
update_package_listings(args, packages, args.arch)