Make sure that lines are not longer than 80 characters
diff --git a/leakcheck/crypto.py b/leakcheck/crypto.py
index d534c57..b07d1f0 100644
--- a/leakcheck/crypto.py
+++ b/leakcheck/crypto.py
@@ -2,7 +2,7 @@
 # See LICENSE for details.
 
 import sys
-import datetime
+from datetime import datetime
 
 from OpenSSL.crypto import (
     FILETYPE_PEM, TYPE_DSA, Error, PKey, X509, load_privatekey, CRL, Revoked)
@@ -116,7 +116,7 @@
         for serial in xrange(1000):
             revoked = Revoked()
             revoked.set_serial(str(serial))
-            revoked.set_rev_date(datetime.datetime.utcnow().strftime('%Y%m%d%H%M%SZ'))
+            revoked.set_rev_date(datetime.utcnow().strftime('%Y%m%d%H%M%SZ'))
             crl.add_revoked(revoked)
         for i in xrange(self.iterations):
             crl.get_revoked()