summaryrefslogtreecommitdiff
path: root/sphinx/util/osutil.py
diff options
context:
space:
mode:
authorJonathan Waltman <jonathan.waltman@gmail.com>2012-11-03 11:04:32 -0500
committerJonathan Waltman <jonathan.waltman@gmail.com>2012-11-03 11:04:32 -0500
commit55b28b01984b51c0f25d8f4d6272afbd6aa28527 (patch)
tree5e9195bd6e4bd7fb32e9e8ce10a4e83ba3e9d8bd /sphinx/util/osutil.py
parente1209ecd903c7e588008921920209f4cb414294f (diff)
downloadsphinx-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.py2
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)