[Python-checkins] r84521 - sandbox/trunk/release/release.py
georg.brandl
python-checkins at python.org
Sun Sep 5 10:30:10 CEST 2010
Author: georg.brandl
Date: Sun Sep 5 10:30:09 2010
New Revision: 84521
Log:
Fix constant name.
Modified:
sandbox/trunk/release/release.py
Modified: sandbox/trunk/release/release.py
==============================================================================
--- sandbox/trunk/release/release.py (original)
+++ sandbox/trunk/release/release.py Sun Sep 5 10:30:09 2010
@@ -148,7 +148,7 @@
print('File was renamed; please commit')
run_cmd(['svn', 'commit'])
new = '%define version ' + tag.text + \
- '\n%define libver ' + tag.basic_version
+ '\n%define libvers ' + tag.basic_version
constant_replace(wanted_file, new, '#', '')
print('done')
More information about the Python-checkins
mailing list