Skip to content
This repository has been archived by the owner on Jun 26, 2018. It is now read-only.

Commit

Permalink
Pull request comment fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
rtilder committed Feb 2, 2015
1 parent b7bc064 commit d4de607
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion trunion/ephemeral.py
Expand Up @@ -44,7 +44,7 @@ def certify(self, req):
cert.set_serial_number(int(time.time() * 1000))
self.set_validity_period(cert)

cert.set_subject(req.get_subject())
cert.set_subject(req.get_subject())
cert.set_pubkey(req.get_pubkey())

cert.set_issuer(self.certificate.get_subject())
Expand Down
2 changes: 1 addition & 1 deletion trunion/tests/base.py
Expand Up @@ -5,14 +5,14 @@
# ***** END LICENSE BLOCK *****

import os
from base64 import b64decode

from pyramid import testing
from mozsvc.config import load_into_settings
from mozsvc.tests.support import TestCase
import trunion.crypto as crypto

# Needed to inspect signatures
from base64 import b64decode
from M2Crypto.BIO import BIOError, MemoryBuffer
from M2Crypto.SMIME import PKCS7
from M2Crypto.X509 import X509_Stack
Expand Down

0 comments on commit d4de607

Please sign in to comment.