Fix E256 with stricter pep8 error checker
[cascardo/ipsilon.git] / ipsilon / tools / certs.py
index 3a60488..2ff63f1 100755 (executable)
@@ -50,7 +50,7 @@ class Certificate(object):
         with open(self.cert, 'r') as f:
             cert = f.readlines()
 
-        #poor man stripping of BEGIN/END lines
+        # poor man stripping of BEGIN/END lines
         if cert[0] == '-----BEGIN CERTIFICATE-----\n':
             cert = cert[1:]
         if cert[-1] == '-----END CERTIFICATE-----\n':