Skip to content

Commit

Permalink
Minor fixes after rebase.
Browse files Browse the repository at this point in the history
Signed-off-by: Michel Hidalgo <michel@ekumenlabs.com>
  • Loading branch information
hidmic committed Mar 12, 2019
1 parent 27fc2c3 commit 9872792
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
9 changes: 6 additions & 3 deletions launch/launch/actions/execute_process.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
import threading
import traceback
from typing import Any # noqa: F401
from typing import Callable
from typing import cast
from typing import Dict
from typing import Iterable
Expand Down Expand Up @@ -280,9 +281,11 @@ def __on_signal_process_event(
self._subprocess_transport.send_signal(typed_event.signal)
return None
except ProcessLookupError:
_logger.debug("signal '{}' not sent to '{}' because it has closed already".format(
typed_event.signal_name, self.process_details['name']
))
self.__logger.debug(
"signal '{}' not sent to '{}' because it has closed already".format(
typed_event.signal_name, self.process_details['name']
)
)

def __on_process_stdin(
self,
Expand Down
1 change: 0 additions & 1 deletion launch_ros/launch_ros/actions/node.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
"""Module for the Node action."""

from collections.abc import Mapping
import logging
import os
import pathlib
from tempfile import NamedTemporaryFile
Expand Down

0 comments on commit 9872792

Please sign in to comment.