From c1bdf93bd774a7a8553afd9fe3cabd25be0a2b2e Mon Sep 17 00:00:00 2001 From: Abhishek Koneru Date: Wed, 17 Jul 2013 14:21:30 -0400 Subject: Fixes for issues reported by pylint. Fixed the warning W0202 - attributes defined outside init and error E0202 - An instance attribute hiding a method (which is actually an error in json.encoder.JSONEncoder line 157.) --- base/common/python/pki/system.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'base/common/python/pki/system.py') diff --git a/base/common/python/pki/system.py b/base/common/python/pki/system.py index 4dd3baac2..9ea93677a 100644 --- a/base/common/python/pki/system.py +++ b/base/common/python/pki/system.py @@ -25,7 +25,7 @@ import xml.etree.ElementTree as ET class SecurityDomainInfo: def __init__(self): - pass + self.name = None class SecurityDomainClient: -- cgit