Skip to content

Commit

Permalink
chg: [helpers] Use checkdmarc from the Python virtualenv.
Browse files Browse the repository at this point in the history
  • Loading branch information
cedricbonhomme committed Nov 22, 2023
1 parent 4d14134 commit ccac4ba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions testing/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
import re
import socket
import subprocess
import sys
import time
from base64 import b64decode
from io import BytesIO
Expand Down Expand Up @@ -222,8 +223,7 @@ def email_check(target: str) -> Dict[str, Any]:
result = {}
env = os.environ.copy()
cmd = [
# sys.exec_prefix + "/bin/python",
"checkdmarc",
os.path.join(sys.exec_prefix, "bin/checkdmarc"),
full_domain_validator(target),
"-f",
"JSON",
Expand Down

0 comments on commit ccac4ba

Please sign in to comment.