summaryrefslogtreecommitdiffstats
path: root/base/common/python/pki/system.py
diff options
context:
space:
mode:
authorAbhishek Koneru <akoneru@redhat.com>2013-07-17 14:21:30 -0400
committerAbhishek Koneru <akoneru@redhat.com>2013-07-18 11:40:31 -0400
commitc1bdf93bd774a7a8553afd9fe3cabd25be0a2b2e (patch)
tree0fb58115ab73ac027aaa04fecd9786d2a8890122 /base/common/python/pki/system.py
parent9b83091ec85a2f0afaf2936ed6388b2ee53ef656 (diff)
downloadpki-c1bdf93bd774a7a8553afd9fe3cabd25be0a2b2e.tar.gz
pki-c1bdf93bd774a7a8553afd9fe3cabd25be0a2b2e.tar.xz
pki-c1bdf93bd774a7a8553afd9fe3cabd25be0a2b2e.zip
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.)
Diffstat (limited to 'base/common/python/pki/system.py')
-rw-r--r--base/common/python/pki/system.py2
1 files changed, 1 insertions, 1 deletions
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: