From f39eebe496ee45b055b7c9668970ea6c8b5456e8 Mon Sep 17 00:00:00 2001 From: Yaroslav Halchenko Date: Fri, 22 Oct 2010 09:49:18 -0400 Subject: [PATCH] moving sphinx/ext under sphinx/sphinxext to please sillly python2.5 (otherwise overloaded by global sphinx"s ext --- sphinx/conf.py | 2 +- sphinx/{ext => sphinxext}/__init__.py | 0 sphinx/{ext => sphinxext}/quote.py | 0 3 files changed, 1 insertion(+), 1 deletion(-) rename sphinx/{ext => sphinxext}/__init__.py (100%) rename sphinx/{ext => sphinxext}/quote.py (100%) diff --git a/sphinx/conf.py b/sphinx/conf.py index f7d0378..0bdb259 100644 --- a/sphinx/conf.py +++ b/sphinx/conf.py @@ -43,7 +43,7 @@ def artworkdir(): # coming with Sphinx (named 'sphinx.ext.*') or your custom ones. #extensions = [] sys.path.append(os.path.abspath('.')) -extensions = ['ext.quote'] +extensions = ['sphinxext.quote'] # Add any paths that contain templates here, relative to this directory. templates_path = ['_templates'] diff --git a/sphinx/ext/__init__.py b/sphinx/sphinxext/__init__.py similarity index 100% rename from sphinx/ext/__init__.py rename to sphinx/sphinxext/__init__.py diff --git a/sphinx/ext/quote.py b/sphinx/sphinxext/quote.py similarity index 100% rename from sphinx/ext/quote.py rename to sphinx/sphinxext/quote.py -- 2.39.5