We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In pub_hex, pub_exp = re.search(r"modulus:\n\s+00:([a-f0-9\:\s]+?)\npublicExponent: ([0-9]+)",out.decode('utf8'), re.MULTILINE|re.DOTALL).groups()
pub_hex, pub_exp = re.search(r"modulus:\n\s+00:([a-f0-9\:\s]+?)\npublicExponent: ([0-9]+)",out.decode('utf8'), re.MULTILINE|re.DOTALL).groups()
'NoneType' object has no attribute 'groups'
And after console log outout Signing certificate...
Signing certificate...
creating new cert :: authorizations for these names not found or expired
\r\n
\n
The text was updated successfully, but these errors were encountered:
Fix issues with openssl newline symbol: was \n and is now \r\n
ca923e8
Signed-off-by: bastelflp <[email protected]>
Solved by ca923e8
Sorry, something went wrong.
Related to diafygi#264
bastelflp
No branches or pull requests
Issues
In
pub_hex, pub_exp = re.search(r"modulus:\n\s+00:([a-f0-9\:\s]+?)\npublicExponent: ([0-9]+)",out.decode('utf8'), re.MULTILINE|re.DOTALL).groups()
'NoneType' object has no attribute 'groups'
And after console log outout
Signing certificate...
creating new cert :: authorizations for these names not found or expired
Cause
\r\n
instead of\n
which caused the regexp in acme-tiny to fail.Solution
\r\n
instead of\n
in regexp search in acme-tiny for output of openssl.The text was updated successfully, but these errors were encountered: