From ed6e7c3896ff33db876e15b3f20bc8494af74a7a Mon Sep 17 00:00:00 2001 From: Jason Kirtland Date: Wed, 1 Aug 2007 00:22:51 +0000 Subject: [PATCH] Removed trailing slash from sys.path manipulation [ticket:700] --- doc/build/genhtml.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/build/genhtml.py b/doc/build/genhtml.py index 67e1c04421..312617fe94 100644 --- a/doc/build/genhtml.py +++ b/doc/build/genhtml.py @@ -2,7 +2,7 @@ import sys,re,os,shutil import cPickle as pickle -sys.path = ['../../lib', './lib/'] + sys.path +sys.path = ['../../lib', './lib'] + sys.path import sqlalchemy import gen_docstrings, read_markdown, toc -- 2.47.3