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

Avoid single-use variable.

parent fcc55973
...@@ -220,10 +220,9 @@ class VerificationManager(BaseServiceHandler): ...@@ -220,10 +220,9 @@ class VerificationManager(BaseServiceHandler):
def oidNotFound(self, conn, message): def oidNotFound(self, conn, message):
uuid = conn.getUUID() uuid = conn.getUUID()
logging.info('OID not found: %s', message) logging.info('OID not found: %s', message)
app = self.app
if not self._gotAnswerFrom(uuid): if not self._gotAnswerFrom(uuid):
return return
app._object_present = False self.app._object_present = False
def connectionCompleted(self, conn): def connectionCompleted(self, conn):
pass 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