You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by br...@apache.org on 2012/12/20 18:51:28 UTC

svn commit: r1424609 - /subversion/trunk/tools/dist/release.py

Author: breser
Date: Thu Dec 20 17:51:28 2012
New Revision: 1424609

URL: http://svn.apache.org/viewvc?rev=1424609&view=rev
Log:
* tools/dist/release.py: Remove tabs.

Modified:
    subversion/trunk/tools/dist/release.py

Modified: subversion/trunk/tools/dist/release.py
URL: http://svn.apache.org/viewvc/subversion/trunk/tools/dist/release.py?rev=1424609&r1=1424608&r2=1424609&view=diff
==============================================================================
--- subversion/trunk/tools/dist/release.py (original)
+++ subversion/trunk/tools/dist/release.py Thu Dec 20 17:51:28 2012
@@ -381,7 +381,7 @@ def compare_changes(repos, branch, revis
       # Treat this as a warning since we are now putting entries for future
       # minor releases in CHANGES on trunk.
       logging.warning('CHANGES has unmerged revisions: %s' %
-		      stdout.replace("\n", " "))
+                      stdout.replace("\n", " "))
 
 def roll_tarballs(args):
     'Create the release artifacts.'
@@ -765,10 +765,10 @@ def get_keys(args):
     'Import the LDAP-based KEYS file to gpg'
     # We use a tempfile because urlopen() objects don't have a .fileno()
     with tempfile.SpooledTemporaryFile() as fd:
-	fd.write(urllib2.urlopen(KEYS).read())
-	fd.flush()
+        fd.write(urllib2.urlopen(KEYS).read())
+        fd.flush()
         fd.seek(0)
-	subprocess.check_call(['gpg', '--import'], stdin=fd)
+        subprocess.check_call(['gpg', '--import'], stdin=fd)
 
 #----------------------------------------------------------------------
 # Main entry point for argument parsing and handling