Skip to content

Commit

Permalink
tweak import
Browse files Browse the repository at this point in the history
  • Loading branch information
jgstew committed Dec 12, 2023
1 parent 021f8f9 commit 53e58f9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions SharedProcessors/GoogleChromeUpdateInfoProvider.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# - https://gist.github.com/pudquick/8cd029d0967ee6f5ee353ed5a967f33c
#
import uuid
from xml.etree import ElementTree as ET
import xml.etree.ElementTree

import requests
from autopkglib import Processor, ProcessorError
Expand Down Expand Up @@ -110,7 +110,7 @@ def main(self):
f"Error reported: {response.status_code} : {response.text}"
)

content_xml = ET.fromstring(response.content)
content_xml = xml.etree.ElementTree.fromstring(response.content)
try:
package_name = content_xml.find(
"app/updatecheck/manifest/packages/package"
Expand Down

0 comments on commit 53e58f9

Please sign in to comment.