Skip to content

Commit

Permalink
Merge pull request #17 from jschoewe/hotfix/fix-ci-errors
Browse files Browse the repository at this point in the history
hotfix/fix-ci-errors
  • Loading branch information
nzlosh authored Feb 16, 2025
2 parents eaad096 + f9992c0 commit 7b71c64
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

## v2.1.1

* Updated files to work with latest CI updates

## v2.1.0

* Timeouts defined in the action are now honored properly
Expand Down
5 changes: 2 additions & 3 deletions etc/generate_actions.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import jinja2
import os
import re
from six.moves.html_parser import HTMLParser
import html

import urllib3

Expand Down Expand Up @@ -286,8 +286,7 @@ def clean_desc(self, desc):
desc = desc.replace('"', "'")

# convert HTML escaped sequences into ascii
htmlparser = HTMLParser()
desc = htmlparser.unescape(desc)
desc = html.unescape(desc)

# remove HTML tags
regex = re.compile('<.*?>')
Expand Down
2 changes: 1 addition & 1 deletion pack.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ keywords:
- red
- hat
- redhat
version: 2.1.0
version: 2.1.1
author: Daniel Chamot
email: [email protected]
python_versions:
Expand Down

0 comments on commit 7b71c64

Please sign in to comment.