diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2017-01-12 10:09:44 +0900 |
---|---|---|
committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2017-01-12 10:09:44 +0900 |
commit | 412bb9aae87dccfb81e8dc0e0cfaff40ad0c3701 (patch) | |
tree | 8dd33860f35d4aceffa7f5bf9ecd7a5969a1e1b3 /sphinx/util/osutil.py | |
parent | 60d4846e0fa4ec0e76ed6c963d13f74015939875 (diff) | |
download | sphinx-git-412bb9aae87dccfb81e8dc0e0cfaff40ad0c3701.tar.gz |
Fix flake8 violations
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 86e6c515b..6368384e8 100644 --- a/sphinx/util/osutil.py +++ b/sphinx/util/osutil.py @@ -27,7 +27,7 @@ from six import PY2, text_type # Errnos that we need. EEXIST = getattr(errno, 'EEXIST', 0) ENOENT = getattr(errno, 'ENOENT', 0) -EPIPE = getattr(errno, 'EPIPE', 0) +EPIPE = getattr(errno, 'EPIPE', 0) EINVAL = getattr(errno, 'EINVAL', 0) # SEP separates path elements in the canonical file names |