Commit 5411b09f authored by Vincent Pelletier's avatar Vincent Pelletier

Avoid single-use variable.

parent fcc55973
......@@ -220,10 +220,9 @@ class VerificationManager(BaseServiceHandler):
def oidNotFound(self, conn, message):
uuid = conn.getUUID()
logging.info('OID not found: %s', message)
app = self.app
if not self._gotAnswerFrom(uuid):
return
app._object_present = False
self.app._object_present = False
def connectionCompleted(self, conn):
pass
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment