[Python-checkins] r66420 - sandbox/trunk/release/release.py

barry.warsaw python-checkins at python.org
Sat Sep 13 02:06:37 CEST 2008


Author: barry.warsaw
Date: Sat Sep 13 02:06:37 2008
New Revision: 66420

Log:
minor tweaks

Modified:
   sandbox/trunk/release/release.py

Modified: sandbox/trunk/release/release.py
==============================================================================
--- sandbox/trunk/release/release.py	(original)
+++ sandbox/trunk/release/release.py	Sat Sep 13 02:06:37 2008
@@ -121,7 +121,7 @@
     substitutions['level'] = dict(
         a   = 'PY_RELEASE_LEVEL_ALPHA',
         b   = 'PY_RELEASE_LEVEL_BETA',
-        rc   = 'PY_RELEASE_LEVEL_GAMMA',
+        rc  = 'PY_RELEASE_LEVEL_GAMMA',
         f   = 'PY_RELEASE_LEVEL_FINAL',
         )[tag.level]
     if done:
@@ -258,7 +258,6 @@
         if result is None:
             error('tag %s is not valid' % tag)
         data = list(result.groups())
-        import pdb; pdb.set_trace()
         # fix None level
         if data[3] is None:
             data[3] = "f"


More information about the Python-checkins mailing list