You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openoffice.apache.org by pf...@apache.org on 2012/08/01 01:10:19 UTC

svn commit: r1367816 - /incubator/ooo/trunk/main/solenv/bin/pchdelta.py

Author: pfg
Date: Tue Jul 31 23:10:19 2012
New Revision: 1367816

URL: http://svn.apache.org/viewvc?rev=1367816&view=rev
Log:
Python reindent.

Modified:
    incubator/ooo/trunk/main/solenv/bin/pchdelta.py

Modified: incubator/ooo/trunk/main/solenv/bin/pchdelta.py
URL: http://svn.apache.org/viewvc/incubator/ooo/trunk/main/solenv/bin/pchdelta.py?rev=1367816&r1=1367815&r2=1367816&view=diff
==============================================================================
--- incubator/ooo/trunk/main/solenv/bin/pchdelta.py (original)
+++ incubator/ooo/trunk/main/solenv/bin/pchdelta.py Tue Jul 31 23:10:19 2012
@@ -1,4 +1,4 @@
-#!/usr/bin/python
+#!/usr/bin/env python
 # *************************************************************
 #  
 #  Licensed to the Apache Software Foundation (ASF) under one
@@ -25,7 +25,7 @@
 # Hacky little delta debug tool to figure out the proper includes for a pch file
 #
 # Usage:
-# 
+#
 # pchdelta.py <pch_target> <dir1> [<dir2> <dir3> ...]
 #
 # <pch_target>      File to perform delta debugging on. The section to test
@@ -82,7 +82,7 @@ def writePch(pchname, header, footer, ac
     outputfile.write(MARKER)
     outputfile.write(footer)
     outputfile.close()
-    
+
 
 # ------------------------------------------------------------------------------
 # Recursive tester routine. Test the segment given and if an error is
@@ -165,6 +165,3 @@ if not testSequenceBuild(dirlist):
 print "Starting evaluation of " + str(len(lines)) + " lines"
 acceptedlines = binaryTest(dirlist, lines, pchname, header, footer, [], "", 0)
 writePch(pchname, header, footer, acceptedlines, [])
-
-
-