From 12badcabc1cd345256a4902f7b0583cf667ecd8d Mon Sep 17 00:00:00 2001 From: Christian Heimes Date: Tue, 11 Aug 2015 20:55:48 +0200 Subject: Make pki PEP 8 compatible Large portions of the patch was automatically created with autopep8: find base/ -name '*.py' | xargs autopep8 --in-place --ignore E309 \ --aggressive find base/common/upgrade base/server/upgrade -type f -and \ -not -name .gitignore | autopep8 --in-place --ignore E309 --aggressive autopep8 --in-place --ignore E309 --aggressive \ base/common/sbin/pki-upgrade \ base/server/sbin/pkispawn \ base/server/sbin/pkidestroy \ base/server/sbin/pki-server \ base/server/sbin/pki-server-upgrade About two dozent violations were fixed manually. https://fedorahosted.org/pki/ticket/708 --- base/common/python/pki/systemcert.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'base/common/python/pki/systemcert.py') diff --git a/base/common/python/pki/systemcert.py b/base/common/python/pki/systemcert.py index d59e07b3d..b5f7b03b8 100644 --- a/base/common/python/pki/systemcert.py +++ b/base/common/python/pki/systemcert.py @@ -35,7 +35,7 @@ class SystemCertClient(object): def __init__(self, connection): """ Constructor """ - #super(PKIResource, self).__init__(connection) + # super(PKIResource, self).__init__(connection) self.connection = connection self.headers = {'Content-type': 'application/json', 'Accept': 'application/json'} -- cgit