]> granicus.if.org Git - clang/commitdiff
Tabs -> Spaces.
authorTed Kremenek <kremenek@apple.com>
Tue, 30 Sep 2008 05:45:59 +0000 (05:45 +0000)
committerTed Kremenek <kremenek@apple.com>
Tue, 30 Sep 2008 05:45:59 +0000 (05:45 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@56833 91177308-0d34-0410-b5e6-96231b3b80d8

tools/scan-view/Reporter.py

index 22e43112df11fcdef2f463814ed23bb886fdde3c..07102cff47a37307c2ba3884a29ebfaeef77ed77 100644 (file)
@@ -113,10 +113,10 @@ class RadarReporter:
     def isAvailable():
         # FIXME: Find this .scpt better
         path = os.path.join(os.path.dirname(__file__),'Resources/GetRadarVersion.scpt')
-       try:
-                   p = subprocess.Popen(['osascript',path], 
-                                 stdout=subprocess.PIPE, stderr=subprocess.PIPE)
-               except:
+        try:
+          p = subprocess.Popen(['osascript',path], 
+          stdout=subprocess.PIPE, stderr=subprocess.PIPE)
+        except:
             return False
         data,err = p.communicate()
         res = p.wait()