diff options
author | Jonathan Waltman <jonathan.waltman@gmail.com> | 2012-11-03 11:04:32 -0500 |
---|---|---|
committer | Jonathan Waltman <jonathan.waltman@gmail.com> | 2012-11-03 11:04:32 -0500 |
commit | 55b28b01984b51c0f25d8f4d6272afbd6aa28527 (patch) | |
tree | 5e9195bd6e4bd7fb32e9e8ce10a4e83ba3e9d8bd /sphinx/util/osutil.py | |
parent | e1209ecd903c7e588008921920209f4cb414294f (diff) | |
download | sphinx-git-55b28b01984b51c0f25d8f4d6272afbd6aa28527.tar.gz |
Fix whitespace / line length issues reported by "make test"
Diffstat (limited to 'sphinx/util/osutil.py')
-rw-r--r-- | sphinx/util/osutil.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/util/osutil.py b/sphinx/util/osutil.py index 64ce74234..8ecfe692b 100644 --- a/sphinx/util/osutil.py +++ b/sphinx/util/osutil.py @@ -51,7 +51,7 @@ def relative_uri(base, to): # returns '', not 'index.html' return '' if len(b2) == 1 and t2 == ['']: - # Special case: relative_uri('f/index.html','f/') should + # Special case: relative_uri('f/index.html','f/') should # return './', not '' return '.' + SEP return ('..' + SEP) * (len(b2)-1) + SEP.join(t2) |