Update memap.py

pull/3627/head
javier-moreno-tridonic-com 2017-01-23 17:02:15 +01:00 committed by GitHub
parent 04a31f3b39
commit 8ff17b9235
1 changed files with 4 additions and 1 deletions

View File

@ -121,7 +121,10 @@ class MemapParser(object):
else:
module_name = data[0] + '/' + data[1]
return [module_name, object_name]
if self.detailed_misc:
return [module_name + '/' + object_name, object_name]
else:
return [module_name, object_name]
elif self.detailed_misc:
rex_obj_name = r'^.+\/(.+\.o\)*)$'