[Python-checkins] release: Remove new .hgtouch file, and also .hgtags from archive

georg.brandl python-checkins at python.org
Tue May 1 18:17:58 CEST 2012


http://hg.python.org/release/rev/d8b32a40ce66
changeset:   60:d8b32a40ce66
user:        Georg Brandl <georg at python.org>
date:        Tue May 01 18:13:38 2012 +0200
summary:
  Remove new .hgtouch file, and also .hgtags from archive

files:
  release.py |  5 +++--
  1 files changed, 3 insertions(+), 2 deletions(-)


diff --git a/release.py b/release.py
--- a/release.py
+++ b/release.py
@@ -263,8 +263,9 @@
         archivename = 'Python-%s' % tag.text
         run_cmd(['hg', 'archive', '-r', tag.hgname, archivename])
         with changed_dir(archivename):
-            print('Removing VCS .*ignore and .hgeol')
-            for name in ('.hgignore', '.hgeol', '.bzrignore', '.gitignore'):
+            print('Removing VCS .*ignore and .hg*')
+            for name in ('.hgignore', '.hgeol', '.hgtags', '.hgtouch',
+                         '.bzrignore', '.gitignore'):
                 try:
                     os.unlink(name)
                 except OSError:

-- 
Repository URL: http://hg.python.org/release


More information about the Python-checkins mailing list