From: Jason Kirtland Date: Wed, 1 Aug 2007 00:22:51 +0000 (+0000) Subject: Removed trailing slash from sys.path manipulation [ticket:700] X-Git-Tag: rel_0_4beta1~124 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ed6e7c3896ff33db876e15b3f20bc8494af74a7a;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git Removed trailing slash from sys.path manipulation [ticket:700] --- 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