Allow the crash log file path to contain an initial tilde component.

llvm-svn: 141340
This commit is contained in:
Johnny Chen 2011-10-06 23:36:00 +00:00
parent 6a5c150e9c
commit 1c6c43f1dc
1 changed files with 2 additions and 1 deletions

View File

@ -99,7 +99,8 @@ class CrashLog:
self.images = list()
self.crashed_thread_idx = -1
self.version = -1
f = open(self.path)
# With possible initial component of ~ or ~user replaced by that user's home directory.
f = open(os.path.expanduser(self.path))
self.file_lines = f.read().splitlines()
parse_mode = PARSE_MODE_NORMAL
thread = None