aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--cws-status2
1 files changed, 1 insertions, 1 deletions
diff --git a/cws-status b/cws-status
index b332f77..d6302e7 100644
--- a/cws-status
+++ b/cws-status
@@ -90,5 +90,5 @@ item_statuses = tree.xpath('//table[//th[text()="Item"]]/tbody/tr/td[7]/text()')
# Print the publish status for the queried extensions.
for i, name in enumerate(item_names_versions):
- if re.match(regex, name):
+ if re.search(regex, name):
print(f'{name}\t{item_statuses[i]}')