summaryrefslogtreecommitdiffstats
path: root/base/common/python/pki/system.py
diff options
context:
space:
mode:
authorAde Lee <alee@redhat.com>2014-05-27 14:12:38 -0400
committerAde Lee <alee@redhat.com>2014-05-29 11:29:44 -0400
commit6262dc33b72ea5703959b91dd95f13d732a5d391 (patch)
tree738b751867665b68288629745dcd33c9971b73d6 /base/common/python/pki/system.py
parenta353e5f81341830ea8a151e88ffc2be35aa40451 (diff)
downloadpki-6262dc33b72ea5703959b91dd95f13d732a5d391.tar.gz
pki-6262dc33b72ea5703959b91dd95f13d732a5d391.tar.xz
pki-6262dc33b72ea5703959b91dd95f13d732a5d391.zip
formatting fixes in python client code for pycharm
Diffstat (limited to 'base/common/python/pki/system.py')
-rw-r--r--base/common/python/pki/system.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/base/common/python/pki/system.py b/base/common/python/pki/system.py
index 821f0dc96..a4b5c2fee 100644
--- a/base/common/python/pki/system.py
+++ b/base/common/python/pki/system.py
@@ -57,6 +57,7 @@ class SecurityDomainHost(object):
host.unsecure_port = json_value['Port']
return host
+
class SecurityDomainSubsystem(object):
def __init__(self):
self.name = None
@@ -130,7 +131,8 @@ class SystemConfigClient(object):
def configure(self, data):
headers = {'Content-type': 'application/json',
'Accept': 'application/json'}
- response = self.connection.post('/rest/installer/configure', data, headers)
+ response = self.connection.post('/rest/installer/configure', data,
+ headers)
return response.json()