Skip to content
Snippets Groups Projects
Commit ad74c260 authored by lnx build's avatar lnx build Committed by Gerrit - the friendly Code Review server
Browse files

Merge "lrdp-v2: parse_system_cache_common function bug fixing wrong format in...

Merge "lrdp-v2: parse_system_cache_common function bug fixing 	wrong format in print_out_str function, format operator %s was missing" into opensource-tools.lnx.1.0
parents ed377989 64ae60de
No related branches found
No related tags found
No related merge requests found
...@@ -277,7 +277,7 @@ class DebugImage_v2(): ...@@ -277,7 +277,7 @@ class DebugImage_v2():
try: try:
cache_type.parse(start, end, ramdump, outfile) cache_type.parse(start, end, ramdump, outfile)
except NotImplementedError: except NotImplementedError:
print_out_str('System cache dumping not supported' print_out_str('System cache dumping not supported %s'
% client_name) % client_name)
except: except:
print_out_str('!!! Unhandled exception while running {0}'.format(client_name)) print_out_str('!!! Unhandled exception while running {0}'.format(client_name))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment