From 891a1a0ec1a21433a4afcf4ff291696db9652d40 Mon Sep 17 00:00:00 2001 From: Vassil Vassilev Date: Thu, 2 Mar 2017 18:47:22 +0000 Subject: [PATCH] Add coding and shebang. Reviewed by Artem Dergachev (D26030)! git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@296781 91177308-0d34-0410-b5e6-96231b3b80d8 --- tools/scan-view/share/Reporter.py | 3 +++ tools/scan-view/share/startfile.py | 3 +++ 2 files changed, 6 insertions(+) diff --git a/tools/scan-view/share/Reporter.py b/tools/scan-view/share/Reporter.py index 294e05b44c..800af03b1a 100644 --- a/tools/scan-view/share/Reporter.py +++ b/tools/scan-view/share/Reporter.py @@ -1,3 +1,6 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- + """Methods for reporting bugs.""" import subprocess, sys, os diff --git a/tools/scan-view/share/startfile.py b/tools/scan-view/share/startfile.py index e8fbe2d5a8..673935909f 100644 --- a/tools/scan-view/share/startfile.py +++ b/tools/scan-view/share/startfile.py @@ -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/. """ -- 2.50.1