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 23:58:04 UTC

svn commit: r1368290 - /incubator/ooo/trunk/main/sc/workben/celltrans/parse.py

Author: pfg
Date: Wed Aug  1 21:58:04 2012
New Revision: 1368290

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

Modified:
    incubator/ooo/trunk/main/sc/workben/celltrans/parse.py

Modified: incubator/ooo/trunk/main/sc/workben/celltrans/parse.py
URL: http://svn.apache.org/viewvc/incubator/ooo/trunk/main/sc/workben/celltrans/parse.py?rev=1368290&r1=1368289&r2=1368290&view=diff
==============================================================================
--- incubator/ooo/trunk/main/sc/workben/celltrans/parse.py (original)
+++ incubator/ooo/trunk/main/sc/workben/celltrans/parse.py Wed Aug  1 21:58:04 2012
@@ -190,7 +190,7 @@ class Parser(object):
         chars = "// This file has been automatically generated.  Do not hand-edit this!\n"
         for obj in localeList:
             chars += "\n" + obj.dumpCode()
-    
+
         # Write to output file.
         file = open(self.outfile, 'w')
         file.write(chars)
@@ -199,4 +199,3 @@ class Parser(object):
 if __name__=='__main__':
     parser = Parser(sys.argv)
     parser.parse()
-