From bf796d2ba5d53b0eef89ad033f576224ee34edda Mon Sep 17 00:00:00 2001 From: Gregory Szorc Date: Fri, 23 Jun 2017 13:22:52 -0700 Subject: [PATCH] NO BUG - Unbust Sphinx docs outside of mach Trivial update to Python package paths to reflect their new location. MozReview-Commit-ID: EWaIHrLFWgD --HG-- extra : rebase_source : b3a033bffe6f8f933807d6e71dccd49c37c75844 --- tools/docs/conf.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/docs/conf.py b/tools/docs/conf.py index 38cea035a2ed..71cb4a7f7f5d 100644 --- a/tools/docs/conf.py +++ b/tools/docs/conf.py @@ -16,15 +16,15 @@ topsrcdir = os.path.normpath(os.path.join(OUR_DIR, '..', '..')) EXTRA_PATHS = ( 'layout/tools/reftest', - 'python/futures', - 'python/jsmin', 'python/mach', 'python/mozbuild', 'python/mozversioncontrol', - 'python/which', 'testing/mozbase/manifestparser', 'testing/mozbase/mozfile', 'testing/mozbase/mozprocess', + 'third_party/python/futures', + 'third_party/python/jsmin', + 'third_party/python/which', ) sys.path[:0] = [os.path.join(topsrcdir, p) for p in EXTRA_PATHS]