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>2019-05-25 19:06:40 +0300
committerJon Turney <jon.turney@dronecode.org.uk>2019-05-27 18:10:11 +0300
commit734bf4ab5db8f962e73427d422f1f2ff6814e27f (patch)
treeb6fb401d48dd7fa78502574216394f66b232c4cd /calm/pkg2html.py
parent3c48fbbc9c32ff7b69f2773cf7ec385b59c31d0a (diff)
Tidy up packages.inc
Diffstat (limited to 'calm/pkg2html.py')
-rwxr-xr-xcalm/pkg2html.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/calm/pkg2html.py b/calm/pkg2html.py
index 8733122..e753b3a 100755
--- a/calm/pkg2html.py
+++ b/calm/pkg2html.py
@@ -242,10 +242,11 @@ def update_package_listings(args, packages):
with open(packages_inc, 'w') as index:
os.fchmod(index.fileno(), 0o755)
print(textwrap.dedent('''\
- <h2 class="cartouche">Available Packages</h2>
<table class="pkglist">'''), file=index)
for p in sorted(package_list, key=package.sort_key):
+ if p.endswith('-debuginfo'):
+ continue
arch_packages = None
for arch in common_constants.ARCHES: