From 422e9ec50020bf156aaa753426f5459908f29aad Mon Sep 17 00:00:00 2001 From: Greg Gallagher Date: Wed, 10 May 2017 10:58:22 -0400 Subject: [PATCH] fix a bad indentation --- clients/rospy/src/rospy/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clients/rospy/src/rospy/core.py b/clients/rospy/src/rospy/core.py index cd355d1189..4e33c69a63 100644 --- a/clients/rospy/src/rospy/core.py +++ b/clients/rospy/src/rospy/core.py @@ -154,7 +154,7 @@ def _base_logger(msg, *args, **kwargs): rospy_logger = logging.getLogger('rosout') if name: rospy_logger = rospy_logger.getChild(name) - logfunc = getattr(rospy_logger, level) + logfunc = getattr(rospy_logger, level) if throttle: caller_id = _frame_record_to_caller_id(inspect.stack()[2])