[Python-checkins] r56776 - doctools/trunk/sphinx/builder.py

georg.brandl python-checkins at python.org
Mon Aug 6 21:05:14 CEST 2007


Author: georg.brandl
Date: Mon Aug  6 21:05:14 2007
New Revision: 56776

Modified:
   doctools/trunk/sphinx/builder.py
Log:
Fix a key name.


Modified: doctools/trunk/sphinx/builder.py
==============================================================================
--- doctools/trunk/sphinx/builder.py	(original)
+++ doctools/trunk/sphinx/builder.py	Mon Aug  6 21:05:14 2007
@@ -100,7 +100,7 @@
         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):


More information about the Python-checkins mailing list