Fix a key name.

This commit is contained in:
Georg Brandl 2007-08-06 19:05:14 +00:00
parent 47a9ad555e
commit 3a946215af

View File

@ -100,7 +100,7 @@ class Builder(object):
if confoverrides:
self.config.update(confoverrides)
# replace version info if 'auto'
if self.config['version'] == 'auto' or self.config['revision'] == 'auto':
if self.config['version'] == 'auto' or self.config['release'] == 'auto':
try:
version, release = get_version_info(srcdirname)
except (IOError, OSError):