Fix: generic filename formatting
authorAntoine Busque <abusque@efficios.com>
Wed, 24 Feb 2016 22:28:35 +0000 (17:28 -0500)
committerAntoine Busque <abusque@efficios.com>
Wed, 24 Feb 2016 23:24:57 +0000 (18:24 -0500)
Signed-off-by: Antoine Busque <abusque@efficios.com>
lttnganalyses/core/io.py

index 09c2ed8b68e5915968538d4a2413d82bf0d7ff28..6ed7434207346445cd3e732eff1656008ae9fd31 100644 (file)
@@ -126,7 +126,7 @@ class IoAnalysis(Analysis):
                     # Add process name to generic filenames to
                     # distinguish them
                     if FileStats.is_generic_name(filename):
-                        filename += '(%s)' % proc_stats.comm
+                        filename += ' (%s)' % proc_stats.comm
 
                     if filename not in files_stats:
                         files_stats[filename] = FileStats(filename)
This page took 0.02453 seconds and 5 git commands to generate.