summaryrefslogtreecommitdiff
path: root/sphinx/util
diff options
context:
space:
mode:
authorshimizukawa <shimizukawa@gmail.com>2013-10-03 06:43:22 +0000
committershimizukawa <shimizukawa@gmail.com>2013-10-03 06:43:22 +0000
commit33ceef4989db97e4b75e0d0c20eff32703f5d109 (patch)
tree422acd651640eb2d274426c3997aa8f6b64137bb /sphinx/util
parentd101c636785bb467eb12b727afa19274075423db (diff)
downloadsphinx-33ceef4989db97e4b75e0d0c20eff32703f5d109.tar.gz
grammar fix: 'multibyte filename' is ambiguous. They are replaced with 'non-ASCII filename'. refs #703
Diffstat (limited to 'sphinx/util')
-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 6ed366d4..87717771 100644
--- a/sphinx/util/osutil.py
+++ b/sphinx/util/osutil.py
@@ -81,7 +81,7 @@ def walk(top, topdown=True, followlinks=False):
fullpath = path.join(top, name)
except UnicodeError:
print >>sys.stderr, (
- '%s:: ERROR: multibyte filename not supported on this '
+ '%s:: ERROR: non-ASCII filename not supported on this '
'filesystem encoding %r, skipped.' % (name, fs_encoding))
continue
if path.isdir(fullpath):