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

georg.brandl python-checkins at python.org
Sat Feb 23 23:58:48 CET 2008


Author: georg.brandl
Date: Sat Feb 23 23:58:48 2008
New Revision: 61026

Modified:
   doctools/trunk/sphinx/builder.py
Log:
Fix config value name.


Modified: doctools/trunk/sphinx/builder.py
==============================================================================
--- doctools/trunk/sphinx/builder.py	(original)
+++ doctools/trunk/sphinx/builder.py	Sat Feb 23 23:58:48 2008
@@ -449,7 +449,7 @@
         self.info(bold('copying static files...'))
         ensuredir(path.join(self.outdir, 'static'))
         staticdirnames = path.join(path.dirname(__file__), 'static') + \
-                         self.config.static_path
+                         self.config.html_static_path
         for staticdirname in staticdirnames:
             for filename in os.listdir(staticdirname):
                 if not filename.startswith('.'):


More information about the Python-checkins mailing list