Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix base64-parsing of dns challenge #9

Merged
merged 1 commit into from
May 26, 2020

Conversation

deep-42-thought
Copy link
Contributor

Previous error on dns challenge (maybe a python2 vs python3 issue?):

  File "./acme/helper.py", line 57, in b64_url_encode
    return encoded.rstrip("=")
TypeError: a bytes-like object is required, not 'str'

... so we give it, what it requests for:
return encoded.rstrip(b"=")

Previous error on dns challenge (maybe a python2 vs python3 issue?):
  File "./acme/helper.py", line 57, in b64_url_encode
    return encoded.rstrip("=")
TypeError: a bytes-like object is required, not 'str'

... so we give it, what it requests for:

return encoded.rstrip(b"=")
@grindsa grindsa changed the base branch from master to devel May 26, 2020 03:55
@grindsa grindsa merged commit 1877685 into grindsa:devel May 26, 2020
@deep-42-thought deep-42-thought deleted the dns-challenge-fix branch June 3, 2020 11:17
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants