diff options
author | Jason Kirtland <jek@discorporate.us> | 2007-08-01 00:22:51 +0000 |
---|---|---|
committer | Jason Kirtland <jek@discorporate.us> | 2007-08-01 00:22:51 +0000 |
commit | ed6e7c3896ff33db876e15b3f20bc8494af74a7a (patch) | |
tree | 0b844b913ed0877ed8cef63b51a2ab83039588bf /doc/build/genhtml.py | |
parent | 45a9b4b175a25eb557f2b4c36680f53ace5c30b1 (diff) | |
download | sqlalchemy-ed6e7c3896ff33db876e15b3f20bc8494af74a7a.tar.gz |
Removed trailing slash from sys.path manipulation [ticket:700]
Diffstat (limited to 'doc/build/genhtml.py')
-rw-r--r-- | doc/build/genhtml.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/build/genhtml.py b/doc/build/genhtml.py index 67e1c0442..312617fe9 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 |