Skip to content

Commit

Permalink
Update issue.py
Browse files Browse the repository at this point in the history
  • Loading branch information
coopeeo authored Dec 23, 2024
1 parent 962ddae commit ba6b320
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/issue.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ def sanitize_name(name):
packjson = {}
for x in file_list:
if x.endswith("pack.json"):
print(archive.open(x))
packjson = json.loads(archive.open(x))
print(archive.open(x, 'r').read().decode('utf-8'))
packjson = json.loads(archive.open(x, 'r').read().decode('utf-8'))
print(file_list)
clickName = packjson["name"]
id2 = re.search(r'^([a-z0-9\-]+\.[a-z0-9\-]+)$', packjson["id"])
Expand Down

0 comments on commit ba6b320

Please sign in to comment.