From 46efce0e1ee9859d3df8f4b822d3486b79126605 Mon Sep 17 00:00:00 2001 From: Dirk Thomas Date: Thu, 9 Feb 2012 00:21:42 +0000 Subject: [PATCH] improve console message for rosmake --- tools/rosmake/src/rosmake/engine.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/rosmake/src/rosmake/engine.py b/tools/rosmake/src/rosmake/engine.py index 16a72d44..d9246183 100755 --- a/tools/rosmake/src/rosmake/engine.py +++ b/tools/rosmake/src/rosmake/engine.py @@ -717,7 +717,7 @@ class RosMakeAll: else: self.log_dir = os.path.join(rospkg.get_ros_home(), "rosmake", date_time_stamp); - self.printer.print_all("Logging to directory%s"%self.log_dir) + self.printer.print_all("Logging to directory %s"%self.log_dir) if os.path.exists (self.log_dir) and not os.path.isdir(self.log_dir): self.printer.print_all( "Log destination %s is a file; please remove it or choose a new destination"%self.log_dir) sys.exit(1)