Commit 54793de6 authored by Anael Beutot's avatar Anael Beutot
Browse files

Fix remote shell NameError on exception

parent 1baa8d96
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -106,7 +106,7 @@ class RemoteShell(object):
        except OSError:
            logger.exception('Error while executing remote shell')
            # close opened fds
            self.close_cb()
            self.close()
            raise
        self.child_watcher = conn.loop.child(self.process.pid, False,
                                             self.child_cb)