Skip to content

Commit f9992c0

Browse files
committed
Fixed files to work with latest CI updates
1 parent eaad096 commit f9992c0

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

CHANGES.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Change Log
22

3+
## v2.1.1
4+
5+
* Updated files to work with latest CI updates
6+
37
## v2.1.0
48

59
* Timeouts defined in the action are now honored properly

etc/generate_actions.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import jinja2
77
import os
88
import re
9-
from six.moves.html_parser import HTMLParser
9+
import html
1010

1111
import urllib3
1212

@@ -286,8 +286,7 @@ def clean_desc(self, desc):
286286
desc = desc.replace('"', "'")
287287

288288
# convert HTML escaped sequences into ascii
289-
htmlparser = HTMLParser()
290-
desc = htmlparser.unescape(desc)
289+
desc = html.unescape(desc)
291290

292291
# remove HTML tags
293292
regex = re.compile('<.*?>')

pack.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ keywords:
88
- red
99
- hat
1010
- redhat
11-
version: 2.1.0
11+
version: 2.1.1
1212
author: Daniel Chamot
1313
email: daniel@nullkarma.com
1414
python_versions:

0 commit comments

Comments
 (0)