| Index: tools/deep_memory_profiler/lib/deep_dump.py
|
| diff --git a/tools/deep_memory_profiler/lib/deep_dump.py b/tools/deep_memory_profiler/lib/deep_dump.py
|
| index dc37ea0c7764d65f4daf26f22a90aa917172769d..bb9a61ed09c087b6a96c37ca0341ade8328328c9 100644
|
| --- a/tools/deep_memory_profiler/lib/deep_dump.py
|
| +++ b/tools/deep_memory_profiler/lib/deep_dump.py
|
| @@ -151,7 +151,7 @@ class DeepDump(Dump):
|
| Raises:
|
| ParsingException for invalid heap profile dumps.
|
| """
|
| - dump = Dump(path, os.stat(path).st_mtime)
|
| + dump = DeepDump(path, os.stat(path).st_mtime)
|
| with open(path, 'r') as f:
|
| dump.load_file(f, log_header)
|
| return dump
|
|
|