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

llvm-svn: 141340
diff --git a/lldb/examples/python/symbolicate-crash.py b/lldb/examples/python/symbolicate-crash.py
index 8b315d4..88ca6a7 100755
--- a/lldb/examples/python/symbolicate-crash.py
+++ b/lldb/examples/python/symbolicate-crash.py
@@ -99,7 +99,8 @@
         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