From 64ae60deb6a49ed7e5a0f200529ecf4c844e42d1 Mon Sep 17 00:00:00 2001 From: Soumen Ghosh <soumeng@codeaurora.org> Date: Thu, 5 Oct 2017 14:14:45 +0530 Subject: [PATCH] lrdp-v2: parse_system_cache_common function bug fixing wrong format in print_out_str function, format operator %s was missing Change-Id: Ifa0867404fdb525e9e14fea9f2d297239c6a2193 --- linux-ramdump-parser-v2/debug_image_v2.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linux-ramdump-parser-v2/debug_image_v2.py b/linux-ramdump-parser-v2/debug_image_v2.py index 2361f78..734ea44 100644 --- a/linux-ramdump-parser-v2/debug_image_v2.py +++ b/linux-ramdump-parser-v2/debug_image_v2.py @@ -277,7 +277,7 @@ class DebugImage_v2(): try: cache_type.parse(start, end, ramdump, outfile) except NotImplementedError: - print_out_str('System cache dumping not supported' + print_out_str('System cache dumping not supported %s' % client_name) except: print_out_str('!!! Unhandled exception while running {0}'.format(client_name)) -- GitLab