Remove gnupg_import_ok_pattern from torbrowser_launcher/common.py (#12)

According to https://github.com/torproject/torbrowser-launcher/pull/716
the definition of `gnupg_import_ok_pattern` in
`torbrowser_launcher/common.py` is causing some warnings.

But it looks like it is not being used since
83fa1d38c4, so we can remove it.

Thanks to meator for reporting the issue.
This commit is contained in:
Nicolas Vigier 2024-01-11 13:33:31 +01:00
parent 961da39f8a
commit 10a13e3fac
No known key found for this signature in database
GPG Key ID: 4060847C8F4D2883

View File

@ -41,15 +41,6 @@ SHARE = os.getenv("TBL_SHARE", sys.prefix + "/share") + "/torbrowser-launcher"
gettext.install("torbrowser-launcher")
# We're looking for output which:
#
# 1. The first portion must be `[GNUPG:] IMPORT_OK`
# 2. The second must be an integer between [0, 15], inclusive
# 3. The third must be an uppercased hex-encoded 160-bit fingerprint
gnupg_import_ok_pattern = re.compile(
b"(\[GNUPG\:\]) (IMPORT_OK) ([0-9]|[1]?[0-5]) ([A-F0-9]{40})"
)
class Common(object):
def __init__(self, tbl_version):