diff options
author | Petr Kutalek <petr.kutalek@forers.com> | 2015-12-04 00:29:38 +0100 |
---|---|---|
committer | Petr Kutalek <petr.kutalek@forers.com> | 2015-12-04 00:29:38 +0100 |
commit | 99c2175c6eefb265b0eacac5072ced344b9254f9 (patch) | |
tree | 3f6195cc79eae27a1154be00e05b5897df2dccdb | |
parent | f4346cca82edd9aea2dfc8f75baf46570aa9131a (diff) |
fixed file-based response prompt
-rw-r--r-- | sign_csr.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sign_csr.py b/sign_csr.py index f6fe24c..1afbf7b 100644 --- a/sign_csr.py +++ b/sign_csr.py @@ -305,7 +305,7 @@ Notes: - Do not include the quotes in the file. - The file should be one line without any spaces. -""".format(n + 4, i['domain'], challenge['token'], responses[n]['data'])) +""".format(n + 4, i['domain'], responses[n]['data'].split(".")[0], responses[n]['data'])) stdout = sys.stdout sys.stdout = sys.stderr |