Add coding and shebang.

Reviewed by Artem Dergachev (D26030)!

llvm-svn: 296781
This commit is contained in:
Vassil Vassilev 2017-03-02 18:47:22 +00:00
parent b27106804a
commit 3dd966b0ce
2 changed files with 6 additions and 0 deletions

View File

@ -1,3 +1,6 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""Methods for reporting bugs."""
import subprocess, sys, os

View File

@ -1,3 +1,6 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""Utility for opening a file using the default application in a cross-platform
manner. Modified from http://code.activestate.com/recipes/511443/.
"""