Fixing pep8 errors for the KMIP server

This change fixes pep8 whitespace errors in the KMIP server.
This commit is contained in:
Peter Hamilton 2015-08-03 10:52:27 -04:00
parent bb0487b5dc
commit 097bd38910

View File

@ -66,6 +66,7 @@ class KMIPServer(object):
factory = KMIPProtocolFactory() factory = KMIPProtocolFactory()
protocol = factory.getProtocol(connection) protocol = factory.getProtocol(connection)
try: try:
while True: while True:
self._processor.process(protocol, protocol) self._processor.process(protocol, protocol)