mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
Fix bug replacing 2 by its errno constant.
This commit is contained in:
parent
023b41b391
commit
198013be93
@ -16,7 +16,7 @@ from os import path
|
||||
from docutils import nodes
|
||||
|
||||
from sphinx import package_dir, locale
|
||||
from sphinx.util import SEP, EEXIST, relative_uri
|
||||
from sphinx.util import SEP, ENOENT, relative_uri
|
||||
from sphinx.environment import BuildEnvironment
|
||||
from sphinx.util.console import bold, purple, darkgreen, term_width_line
|
||||
|
||||
@ -210,7 +210,7 @@ class Builder(object):
|
||||
path.join(self.doctreedir, ENV_PICKLE_FILENAME))
|
||||
self.info('done')
|
||||
except Exception, err:
|
||||
if type(err) is IOError and err.errno == EEXIST:
|
||||
if type(err) is IOError and err.errno == ENOENT:
|
||||
self.info('not found')
|
||||
else:
|
||||
self.info('failed: %s' % err)
|
||||
|
Loading…
Reference in New Issue
Block a user